Skip to content

Commit

Permalink
Launcher icons improved
Browse files Browse the repository at this point in the history
  • Loading branch information
GleammerRay committed Apr 16, 2022
1 parent 483dadb commit 35ef50d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
Binary file modified android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions lib/screens/password_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -88,56 +88,56 @@ class _PasswordScreen extends State<PasswordScreen> {
EntryWidget(
body: Column(
children: [
const Text(
const SelectableText(
'Nickname',
style: TextStyle(color: Colors.grey),
),
Text(_password.nickname),
SelectableText(_password.nickname),
],
),
),
EntryWidget(
body: Column(
children: [
const Text(
const SelectableText(
'Username',
style: TextStyle(color: Colors.grey),
),
Text(_password.username),
SelectableText(_password.username),
],
),
),
EntryWidget(
body: Column(
children: [
const Text(
const SelectableText(
'Email',
style: TextStyle(color: Colors.grey),
),
Text(_password.email),
SelectableText(_password.email),
],
),
),
EntryWidget(
body: Column(
children: [
const Text(
const SelectableText(
'Password',
style: TextStyle(color: Colors.grey),
),
Text(_password.password),
SelectableText(_password.password),
],
),
),
EntryWidget(
body: Column(
children: [
const Text(
const SelectableText(
'2FA Code',
style: TextStyle(color: Colors.grey),
),
_password.tfa != null
? Text(OTP.generateTOTPCodeString(
? SelectableText(OTP.generateTOTPCodeString(
_password.tfa!.secret,
DateTime.now().millisecondsSinceEpoch,
length: _password.tfa!.length,
Expand All @@ -152,7 +152,7 @@ class _PasswordScreen extends State<PasswordScreen> {
EntryWidget(
body: Column(
children: [
const Text(
const SelectableText(
'Website',
style: TextStyle(color: Colors.grey),
),
Expand All @@ -163,7 +163,7 @@ class _PasswordScreen extends State<PasswordScreen> {
EntryWidget(
body: Column(
children: [
const Text(
const SelectableText(
'Additional Info',
style: TextStyle(color: Colors.grey),
),
Expand Down

0 comments on commit 35ef50d

Please sign in to comment.