Skip to content

Commit

Permalink
UI Improvements and fixes metadata fetch error
Browse files Browse the repository at this point in the history
  • Loading branch information
anima-regem committed Nov 16, 2024
1 parent 4f53056 commit aeff091
Show file tree
Hide file tree
Showing 5 changed files with 528 additions and 862 deletions.
2 changes: 2 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ android {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.debug
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions lib/components/add_link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ class AddLinkDialog extends StatefulWidget {
final Function(String) onAddLink;

const AddLinkDialog({
Key? key,
super.key,
required this.linkController,
required this.onAddLink,
}) : super(key: key);
});

@override
State<AddLinkDialog> createState() => _AddLinkDialogState();
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ class MyApp extends StatelessWidget {
}

// If user is logged in, show HomeScreen, otherwise show AuthScreen
return snapshot.hasData ? HomeScreen() : AuthScreen();
return snapshot.hasData ? const HomeScreen() : const AuthScreen();
},
),
);
Expand Down
Loading

0 comments on commit aeff091

Please sign in to comment.