mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
36 lines
636 B
Dart
36 lines
636 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,
|
|
});
|
|
}
|