1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/routes/main_route/tablet_route.dart

106 lines
2.7 KiB
Dart
Raw Normal View History

2020-05-05 11:31:03 +00:00
import 'package:comunic/ui/routes/main_route/main_route.dart';
import 'package:comunic/ui/widgets/tablet_mode/conversations/conversations_area_widget.dart';
2020-05-05 16:18:09 +00:00
import 'package:comunic/ui/widgets/tablet_mode/current_user_panel.dart';
2020-05-08 14:06:10 +00:00
import 'package:comunic/ui/widgets/tablet_mode/global_search_field.dart';
2020-05-05 16:49:50 +00:00
import 'package:comunic/ui/widgets/tablet_mode/memberships_panel.dart';
2020-05-06 16:54:32 +00:00
import 'package:comunic/ui/widgets/tablet_mode/tablet_appbar_widget.dart';
2020-05-05 11:31:03 +00:00
import 'package:flutter/material.dart';
/// Main tablet route
///
/// @author Pierre Hubert
class TabletRoute extends StatefulWidget implements MainRoute {
2020-05-09 12:07:14 +00:00
const TabletRoute({Key key}) : super(key: key);
2020-05-05 11:31:03 +00:00
@override
_TabletRouteState createState() => _TabletRouteState();
}
2020-05-09 12:18:09 +00:00
class _TabletRouteState extends MainController {
2020-05-09 06:17:52 +00:00
final _conversationsKey = GlobalKey<ConversationsAreaWidgetState>();
2020-05-05 11:31:03 +00:00
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: _buildAppBar(),
body: _buildBody(),
);
}
2020-05-06 16:54:32 +00:00
Widget _buildAppBar() => ComunicTabletAppBarWidget();
2020-05-05 11:31:03 +00:00
2020-05-09 04:49:05 +00:00
Widget _buildBody() => Stack(
children: [
Row(children: <Widget>[_buildLeftPane(), _buildRightPane()]),
2020-05-09 06:17:52 +00:00
Positioned(
right: 0,
bottom: 0,
child: ConversationsAreaWidget(key: _conversationsKey),
)
2020-05-09 04:49:05 +00:00
],
2020-05-05 11:31:03 +00:00
);
2020-05-05 16:18:09 +00:00
Widget _buildLeftPane() => Theme(
data: Theme.of(context).copyWith(
2020-05-05 17:33:04 +00:00
textTheme: TextTheme(body1: TextStyle(color: Colors.white)),
iconTheme: IconThemeData(color: Colors.white),
),
2020-05-05 16:18:09 +00:00
child: Container(
width: 300,
color: Color(0xFF222D32),
child: Column(
2020-05-05 16:49:50 +00:00
children: <Widget>[
CurrentUserPanel(),
2020-05-08 14:06:10 +00:00
Container(height: 10),
GlobalSearchField(),
Container(height: 10),
2020-05-05 16:49:50 +00:00
Expanded(child: MembershipsPanel())
],
2020-05-05 16:18:09 +00:00
),
),
2020-05-05 11:31:03 +00:00
);
Widget _buildRightPane() => Container();
2020-05-09 06:17:52 +00:00
@override
void openConversation(int convID, {fullScreen = false}) {
_conversationsKey.currentState.openConversations(convID);
}
@override
void openGroup(int groupID) {
// TODO: implement openGroup
}
@override
void openUserAccessDeniedPage(int userID) {
// TODO: implement openUserAccessDeniedPage
}
@override
void openUserFriendsList(int userID) {
// TODO: implement openUserFriendsList
}
@override
void openUserPage(int userID) {
// TODO: implement openUserPage
}
@override
void push(Widget w, {bool hideNavBar}) {
// TODO: implement push
}
@override
void startCall(int convID) {
// TODO: implement startCall
}
2020-05-09 12:18:09 +00:00
@override
void doPopPage() {
// TODO: implement doPopPage
}
2020-05-05 11:31:03 +00:00
}