OnPay operations
This commit is contained in:
@@ -18,7 +18,7 @@ class MyExampleApp extends StatelessWidget {
|
||||
title: 'GymLink Example App',
|
||||
debugShowCheckedModeBanner: false,
|
||||
home: const ExampleMainPage(),
|
||||
theme: ThemeData.dark(useMaterial3: true),
|
||||
theme: ThemeData.light(useMaterial3: true),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -75,7 +75,7 @@ class _ExamplePageState extends State<ExamplePage> {
|
||||
() => context.read<GymLinkProvider>().onTokenReceived('token123'));
|
||||
Future.microtask(() => context
|
||||
.read<GymLinkProvider>()
|
||||
.setTheme(ThemeData.dark(useMaterial3: true)));
|
||||
.setTheme(ThemeData.light(useMaterial3: true)));
|
||||
}
|
||||
|
||||
@override
|
||||
@@ -84,6 +84,7 @@ class _ExamplePageState extends State<ExamplePage> {
|
||||
appBar: AppBar(
|
||||
title: const Text('GymLink Example App'),
|
||||
),
|
||||
resizeToAvoidBottomInset: false,
|
||||
drawer: getDrawer(context),
|
||||
body: Column(
|
||||
children: [
|
||||
|
||||
Reference in New Issue
Block a user