mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-04-27 18:24:45 +00:00
CAKE-20 | merged dev branch to current
This commit is contained in:
parent
2d20c1dee3
commit
b2f590ee4b
4 changed files with 9 additions and 8 deletions
lib
palette.dart
src/screens
|
@ -22,7 +22,7 @@ class PaletteDark {
|
|||
//static const Color distantBlue = Color.fromRGBO(70, 85, 133, 1.0); // mainBackgroundColor
|
||||
static const Color lightDistantBlue = Color.fromRGBO(81, 96, 147, 1.0); // borderCardColor
|
||||
static const Color gray = Color.fromRGBO(140, 153, 201, 1.0); // walletCardText
|
||||
static const Color violetBlue = Color.fromRGBO(51, 63, 104, 1.0); // walletCardAddressField
|
||||
//static const Color violetBlue = Color.fromRGBO(51, 63, 104, 1.0); // walletCardAddressField
|
||||
//static const Color moderateBlue = Color.fromRGBO(63, 77, 122, 1.0); // walletCardSubAddressField
|
||||
//static const Color darkNightBlue = Color.fromRGBO(33, 43, 73, 1.0); // historyPanel
|
||||
static const Color pigeonBlue = Color.fromRGBO(91, 112, 146, 1.0); // historyPanelText
|
||||
|
@ -53,13 +53,11 @@ class PaletteDark {
|
|||
static const Color blueGrey = Color.fromRGBO(87, 98, 138, 1.0);
|
||||
static const Color moderateBlue = Color.fromRGBO(60, 73, 118, 1.0);
|
||||
static const Color deepPurpleBlue = Color.fromRGBO(19, 29, 56, 1.0);
|
||||
static const Color lightOceanBlue = Color.fromRGBO(30, 42, 73, 1.0);
|
||||
static const Color lightBlueGrey = Color.fromRGBO(125, 141, 183, 1.0);
|
||||
static const Color darkOceanBlue = Color.fromRGBO(30, 42, 73, 1.0);
|
||||
static const Color wildBlueGrey = Color.fromRGBO(125, 137, 182, 1.0);
|
||||
static const Color darkGrey = Color.fromRGBO(118, 131, 169, 1.0);
|
||||
static const Color dividerColor = Color.fromRGBO(48, 59, 95, 1.0);
|
||||
static const Color violetBlue = Color.fromRGBO(59, 72, 119, 1.0);
|
||||
static const Color deepPurpleBlue = Color.fromRGBO(19, 29, 56, 1.0);
|
||||
static const Color distantBlue = Color.fromRGBO(72, 85, 131, 1.0);
|
||||
|
||||
// FIXME: Rename.
|
||||
|
|
|
@ -20,7 +20,9 @@ class DashboardPage extends BasePage {
|
|||
DashboardPage({
|
||||
@required this.walletViewModel,
|
||||
@required this.addressListViewModel,
|
||||
});
|
||||
}) {
|
||||
walletViewModel.pageViewStore.setCurrentPage(1);
|
||||
}
|
||||
|
||||
@override
|
||||
Color get backgroundLightColor => PaletteDark.backgroundColor;
|
||||
|
|
|
@ -140,7 +140,7 @@ class MenuWidgetState extends State<MenuWidget> {
|
|||
),
|
||||
Container(
|
||||
height: 1,
|
||||
color: PaletteDark.lightOceanBlue,
|
||||
color: PaletteDark.darkOceanBlue,
|
||||
),
|
||||
ListView.separated(
|
||||
shrinkWrap: true,
|
||||
|
@ -189,7 +189,7 @@ class MenuWidgetState extends State<MenuWidget> {
|
|||
},
|
||||
separatorBuilder: (_, index) => Container(
|
||||
height: 1,
|
||||
color: PaletteDark.lightOceanBlue,
|
||||
color: PaletteDark.darkOceanBlue,
|
||||
),
|
||||
itemCount: itemCount)
|
||||
],
|
||||
|
|
|
@ -81,7 +81,8 @@ class QRWidget extends StatelessWidget {
|
|||
textColor: Colors.white,
|
||||
borderColor: PaletteDark.darkGrey,
|
||||
validator: AmountValidator(
|
||||
type: addressListViewModel.type
|
||||
type: addressListViewModel.type,
|
||||
isAutovalidate: true
|
||||
),
|
||||
autovalidate: true,
|
||||
placeholderTextStyle: TextStyle(
|
||||
|
|
Loading…
Reference in a new issue