selfprivacy.org.app/lib/ui/pages/users/user.dart

49 lines
1.3 KiB
Dart
Raw Normal View History

2021-01-06 19:35:57 +02:00
part of 'users.dart';
class _User extends StatelessWidget {
2021-10-12 00:10:04 +03:00
const _User({Key? key, required this.user, required this.isRootUser})
2021-09-29 21:28:47 +03:00
: super(key: key);
2021-01-06 19:35:57 +02:00
2021-07-29 08:24:42 +03:00
final User user;
2021-10-12 00:10:04 +03:00
final bool isRootUser;
2021-01-06 19:35:57 +02:00
@override
Widget build(BuildContext context) {
return InkWell(
onTap: () {
2021-06-21 00:08:52 +03:00
showBrandBottomSheet<void>(
2021-01-06 19:35:57 +02:00
context: context,
builder: (BuildContext context) {
2021-10-12 00:10:04 +03:00
return _UserDetails(user: user, isRootUser: isRootUser);
2021-01-06 19:35:57 +02:00
},
);
},
child: Container(
2021-05-26 00:53:54 +03:00
padding: paddingH15V0,
2021-01-06 19:35:57 +02:00
height: 48,
child: Row(
children: [
Container(
width: 17,
height: 17,
decoration: BoxDecoration(
2021-07-29 08:24:42 +03:00
color: user.color,
2021-01-06 19:35:57 +02:00
shape: BoxShape.circle,
),
),
SizedBox(width: 20),
2021-09-29 21:28:47 +03:00
Flexible(
2021-10-12 00:10:04 +03:00
child: isRootUser
2021-09-29 21:28:47 +03:00
? BrandText.h4Underlined(user.login)
// cross out text if user not found on server
: BrandText.h4(user.login,
style: user.isFoundOnServer
? null
: TextStyle(decoration: TextDecoration.lineThrough)),
2021-09-29 21:28:47 +03:00
),
2021-01-06 19:35:57 +02:00
],
),
),
);
}
}