changed GPS listener

This commit is contained in:
2023-12-07 10:20:44 +05:30
parent fa0587178f
commit 56c07852f9
7 changed files with 70 additions and 69 deletions

View File

@ -1,16 +1,15 @@
import 'package:flutter/material.dart';
class LoadingPage extends StatelessWidget {
const LoadingPage({ Key? key }) : super(key: key);
const LoadingPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
alignment: Alignment.topCenter,
margin: const EdgeInsets.only(top: 20),
child: const CircularProgressIndicator(
value: 0.8,
)
);
alignment: Alignment.center,
margin: const EdgeInsets.only(top: 20),
child: const CircularProgressIndicator(
value: 0.8,
));
}
}
}