Skip to content

Commit

Permalink
Merge pull request #39 from Divyakumar21202/main
Browse files Browse the repository at this point in the history
Clear the Issue 38 : Change the Android App name.
  • Loading branch information
Divyakumar21202 authored Sep 26, 2024
2 parents bf3b8f5 + f7312e5 commit c0e6b40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 28 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="mess_mgmt"
android:label="Coupon Aggregator"
android:name="${applicationName}"
android:icon="@mipmap/launcher_icon">
<activity
Expand Down
31 changes: 4 additions & 27 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ void main() async {
}

class MyApp extends StatelessWidget {
const MyApp({super.key});
const MyApp({
super.key,
});

@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutt',
title: 'Coupon Aggregator',
theme: AppTheme.lightTheme(),
home: Observer(
builder: (context) {
Expand All @@ -30,31 +32,6 @@ class MyApp extends StatelessWidget {
return const DashboardScreen();
}
return const SwitchingAuthScreen();
// return ReactionBuilder(
// builder: (context) {
// return autorun((_) {
// final isLoading = authStore.isLoading;
// final authError = appState.authError;
// final isSuccessLoggedIn = authStore.isSuccessfullyLoggedin;
// final isSuccessSignedIn = authStore.isSuccessfullySignedUp;
// if (!isLoading && authError != null) {
// showError(
// context,
// authError.errorDescription,
// authError.errorString,
// );
// appState.authError = null;
// }
// if (isSuccessLoggedIn) {
// showSuccessLogin(context);
// }
// if (isSuccessSignedIn) {
// showSuccessSignUp(context);
// }
// });
// },
// child: const SwitchingAuthScreen(),
// );
},
),
);
Expand Down

0 comments on commit c0e6b40

Please sign in to comment.