update permission

This commit is contained in:
Mohamed Nouffer
2022-12-25 19:26:07 +05:30
parent 6a4d4b5033
commit c1f7656044
2 changed files with 10 additions and 4 deletions

View File

@ -31,7 +31,8 @@ class _PermissionHandlerScreenState extends State<PermissionHandlerScreen> {
TextButton( TextButton(
child: const Text('わかった'), child: const Text('わかった'),
onPressed: () { onPressed: () {
Navigator.of(context).pop(); //Navigator.of(context).pop();
Get.toNamed(AppPages.TRAVEL);
}, },
), ),
], ],
@ -105,6 +106,11 @@ class _PermissionHandlerScreenState extends State<PermissionHandlerScreen> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Container(); return Container(
color: Colors.white,
child: Center(
child: Text(""),
),
);
} }
} }