OnPay operations

This commit is contained in:
2024-05-21 22:36:42 +03:00
parent 986a9d9bd5
commit 9ac9813244
4 changed files with 42 additions and 15 deletions

View File

@@ -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: [