mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-23 05:19:22 +00:00
39 lines
1023 B
Dart
39 lines
1023 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// Abstract main application route
|
|
///
|
|
/// This mixin contains methods available in all display modes
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
mixin MainRoute implements StatefulWidget {}
|
|
|
|
/// Public interface of home controller
|
|
mixin MainController implements State<MainRoute> {
|
|
/// Get current instance of Home controller
|
|
static MainController of(BuildContext context) =>
|
|
context.findAncestorStateOfType<MainController>();
|
|
|
|
/// Open user page
|
|
void openUserPage(int userID);
|
|
|
|
void openUserAccessDeniedPage(int userID);
|
|
|
|
/// Open a specific group page specified by its [groupID]
|
|
void openGroup(int groupID);
|
|
|
|
/// Display the list of friends of a user
|
|
void openUserFriendsList(int userID);
|
|
|
|
/// Pop current page. Last page can not be popped
|
|
void popPage();
|
|
|
|
/// Push a new widget
|
|
void push(Widget w, {bool hideNavBar});
|
|
|
|
/// Open a conversation
|
|
void openConversation(int convID);
|
|
|
|
/// Start a call for a given conversation
|
|
void startCall(int convID);
|
|
} |