mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-27 04:03:30 +00:00
Start to refactor user page
This commit is contained in:
49
lib/ui/screens/user_page_sections/user_page_header.dart
Normal file
49
lib/ui/screens/user_page_sections/user_page_header.dart
Normal file
@ -0,0 +1,49 @@
|
||||
import 'package:comunic/models/advanced_user_info.dart';
|
||||
import 'package:comunic/ui/widgets/account_image_widget.dart';
|
||||
import 'package:comunic/utils/account_utils.dart';
|
||||
import 'package:comunic/utils/conversations_utils.dart';
|
||||
import 'package:comunic/utils/ui_utils.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/// User header
|
||||
///
|
||||
/// @author Pierre Hubert
|
||||
|
||||
class UserPageHeader extends StatelessWidget {
|
||||
final AdvancedUserInfo user;
|
||||
final Color bgColor;
|
||||
|
||||
const UserPageHeader({
|
||||
Key key,
|
||||
@required this.user,
|
||||
@required this.bgColor,
|
||||
}) : assert(user != null),
|
||||
super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Container(
|
||||
color: bgColor,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
InkWell(
|
||||
onTap: () => showImageFullScreen(context, user.accountImageURL),
|
||||
child: AccountImageWidget(user: user),
|
||||
),
|
||||
Expanded(flex: 1, child: Text(" ${user.displayName}")),
|
||||
user.id == userID()
|
||||
? Container()
|
||||
: IconButton(
|
||||
icon: Icon(
|
||||
Icons.chat,
|
||||
color: DefaultTextStyle.of(context).style.color,
|
||||
),
|
||||
onPressed: () {
|
||||
openPrivateConversation(context, user.id);
|
||||
}),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user