This repository has been archived by the owner on Jan 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added message coloring, dark mode, corrected bugs * removed scrolling for new messages, only scroll when sending * updated splash screen to be dark gray * resolved analysis issues
- Loading branch information
David
authored
Apr 19, 2020
1 parent
64d46df
commit 99455b5
Showing
11 changed files
with
190 additions
and
58 deletions.
There are no files selected for viewing
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class UserAvatar { | ||
static String formatIconName(String icon) { | ||
icon = icon.replaceAll(" ", ""); | ||
return icon.replaceAll("/", ""); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class PartyHarderTheme { | ||
static getLightTheme() { | ||
return new ThemeData( | ||
primaryColor: Colors.redAccent, | ||
unselectedWidgetColor: Colors.black, | ||
cardColor: Colors.black12 | ||
); | ||
} | ||
static getDarkTheme() { | ||
return new ThemeData( | ||
brightness: Brightness.dark, | ||
primaryColor: Colors.redAccent, | ||
accentColor: Colors.redAccent, | ||
buttonColor: Colors.redAccent, | ||
dialogBackgroundColor: Colors.blueGrey, | ||
cardColor: Colors.white12, | ||
unselectedWidgetColor: Colors.white60 | ||
); | ||
} | ||
} |
Oops, something went wrong.