Files
intaleq/ios/RideWidget/RideWidgetBundle.swift
2026-02-28 01:12:28 +03:00

21 lines
378 B
Swift
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// RideWidgetBundle.swift
// RideWidget
//
// Created by Hamza Aleghwairyeen on 26/02/2026.
//
import WidgetKit
import SwiftUI
@main
struct RideWidgetBundle: WidgetBundle {
var body: some Widget {
RideWidget() // الويدجت العادية
RideWidgetLiveActivity() // هذا السطر ضروري وغالبًا ناقص!
}
}