CWA-201 | applied new design to primary button and seed page; added base alert dialog and reconnect alert dialog

This commit is contained in:
Oleksandr Sobol 2020-04-24 20:34:32 +03:00
parent 6a799df7da
commit df64e7b5e1
19 changed files with 403 additions and 177 deletions

View file

@ -77,16 +77,16 @@ class WelcomePage extends BasePage {
text: S.of(context).create_new,
color:
Theme.of(context).primaryTextTheme.button.backgroundColor,
borderColor:
Theme.of(context).primaryTextTheme.button.decorationColor),
textColor:
Theme.of(context).primaryTextTheme.button.color),
SizedBox(height: 10),
PrimaryButton(
onPressed: () {
Navigator.pushNamed(context, Routes.restoreOptions);
},
color: Theme.of(context).accentTextTheme.caption.backgroundColor,
borderColor:
Theme.of(context).accentTextTheme.caption.decorationColor,
textColor:
Theme.of(context).primaryTextTheme.button.color,
text: S.of(context).restore_wallet,
)
]))