mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-23 05:19:22 +00:00
39 lines
768 B
Dart
39 lines
768 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
/// Single page information
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
enum PageType {
|
|
USER_PAGE,
|
|
GROUP_PAGE,
|
|
CONVERSATION_PAGE,
|
|
NOTIFICATIONS_PAGE,
|
|
CONVERSATIONS_LIST_PAGE,
|
|
FRIENDS_LIST_PAGE,
|
|
LATEST_POSTS_PAGE,
|
|
OTHER_PAGE
|
|
}
|
|
|
|
class PageInfo {
|
|
final PageType type;
|
|
final Widget child;
|
|
final int id;
|
|
final bool hideNavBar;
|
|
final bool canShowAsDialog;
|
|
|
|
/// Unique identification of this child
|
|
final key = UniqueKey();
|
|
|
|
PageInfo({
|
|
this.type = PageType.OTHER_PAGE,
|
|
@required this.child,
|
|
this.id,
|
|
this.hideNavBar = false,
|
|
this.canShowAsDialog = false,
|
|
}) : assert(type != null),
|
|
assert(child != null),
|
|
assert(hideNavBar != null),
|
|
assert(canShowAsDialog != null);
|
|
}
|