1.0.0 alpha1

This commit is contained in:
Yegor Vialov
2020-05-03 14:26:46 +00:00
parent 4492a08d6b
commit 8aa0e03187
5 changed files with 10 additions and 4 deletions

View File

@ -540,6 +540,12 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver, Ticker
child: Text("Login with long-lived token", style: Theme.of(context).textTheme.button),
color: Theme.of(context).primaryColor,
onPressed: () => eventBus.fire(ShowTokenLoginPopupEvent(goBackFirst: false))
),
Container(height: 20,),
FlatButton(
child: Text("Connection settings", style: Theme.of(context).textTheme.button),
color: Theme.of(context).primaryColor,
onPressed: () => Navigator.of(context).pushNamed('/connection-settings')
)
]
)