mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
13 lines
205 B
Dart
13 lines
205 B
Dart
|
import 'package:flutter/widgets.dart';
|
||
|
|
||
|
import 'auth_state.dart';
|
||
|
|
||
|
abstract class IWelcomeAuth {
|
||
|
Future<AuthState> getAuthState();
|
||
|
}
|
||
|
|
||
|
abstract class IWelcomeRoute {
|
||
|
Widget signIn();
|
||
|
Widget home();
|
||
|
}
|