Add credential screen & screen arguments; refactor config screen

This commit is contained in:
mitchell 2019-07-07 00:14:09 -04:00
parent af8834f7bd
commit 910bdeae12
9 changed files with 246 additions and 31 deletions

View file

@ -0,0 +1,8 @@
import 'connection_config.dart';
class ConfigScreenArguments {
final ConnectionConfig connectionConfig;
final String privateKey;
const ConfigScreenArguments(this.connectionConfig, this.privateKey);
}