1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/ui/widgets/tablet_mode/conversations/conversation_window_container.dart

66 lines
1.8 KiB
Dart
Raw Normal View History

import 'package:comunic/ui/widgets/custom_app_bar_size.dart';
2020-05-09 07:30:46 +00:00
import 'package:flutter/material.dart';
/// Conversation window
///
/// Simple container for a conversation
///
/// @author Pierre Hubert
class ConversationWindowContainer extends StatelessWidget {
final Color appBarBgColor;
final Widget icon;
2020-05-09 07:30:46 +00:00
final Widget title;
final void Function() onClose;
2020-05-09 08:20:44 +00:00
final void Function() onToggleCollapse;
2020-05-09 08:20:06 +00:00
final bool isCollapsed;
2020-05-09 07:30:46 +00:00
final Widget body;
final List<Widget> action;
2020-05-09 07:30:46 +00:00
const ConversationWindowContainer({
Key key,
this.appBarBgColor,
this.icon,
2020-05-09 07:30:46 +00:00
@required this.title,
@required this.onClose,
@required this.body,
2020-05-09 08:20:44 +00:00
@required this.onToggleCollapse,
2020-05-09 08:20:06 +00:00
@required this.isCollapsed,
this.action,
2020-05-09 07:30:46 +00:00
}) : assert(title != null),
assert(onClose != null),
assert(body != null),
2020-05-09 08:20:44 +00:00
assert(onToggleCollapse != null),
2020-05-09 08:20:06 +00:00
assert(isCollapsed != null),
2020-05-09 07:30:46 +00:00
super(key: key);
@override
Widget build(BuildContext context) {
return Card(
child: Container(
width: 300,
2020-05-09 08:20:06 +00:00
height: !isCollapsed ? 400 : 40,
2020-05-09 07:30:46 +00:00
child: Scaffold(
appBar: AppBarWrapper(
height: 40,
appBar: AppBar(
2021-02-07 16:09:08 +00:00
textTheme: TextTheme(headline6: TextStyle(fontSize: 15)),
backgroundColor: appBarBgColor,
leading: icon,
title: GestureDetector(child: title, onTap: onToggleCollapse),
actions: (action == null ? [] : action)
..add(
IconButton(icon: Icon(Icons.close), onPressed: onClose),
),
)),
2020-05-09 08:20:06 +00:00
body: Visibility(
child: body,
visible: !isCollapsed,
maintainState: true,
),
2020-05-09 07:30:46 +00:00
),
),
);
}
}