|
|
|
|
@ -106,11 +106,12 @@ Future<void> main() async {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
ChangeNotifierProvider<ChatVM>(
|
|
|
|
|
create: (_) => ChatVM(
|
|
|
|
|
chatRepo: injector.get<ChatRepo>(),
|
|
|
|
|
requestRepo: injector.get<RequestRepo>(),
|
|
|
|
|
commonServices: injector.get<CommonAppServices>(),
|
|
|
|
|
)),
|
|
|
|
|
create: (_) => ChatVM(
|
|
|
|
|
chatRepo: injector.get<ChatRepo>(),
|
|
|
|
|
requestRepo: injector.get<RequestRepo>(),
|
|
|
|
|
commonServices: injector.get<CommonAppServices>(),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
ChangeNotifierProvider<RequestsVM>(
|
|
|
|
|
create: (_) => RequestsVM(
|
|
|
|
|
requestRepo: injector.get<RequestRepo>(),
|
|
|
|
|
@ -168,10 +169,3 @@ class MyApp extends StatelessWidget {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Latitude: 24.708741, Longitude: 46.6657643,
|
|
|
|
|
|
|
|
|
|
//Longitude=24.708741&Latitude=46.6657643
|
|
|
|
|
|
|
|
|
|
//update I/flutter ( 5035): │ "latitude": "37.421998",
|
|
|
|
|
// I/flutter ( 5035): │ "longitude": "-122.0839",
|
|
|
|
|
|