1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-09-18 21:38:48 +00:00

Fix issues with white theme & Forez join group screen

This commit is contained in:
2021-04-23 19:41:14 +02:00
parent e6c645f1e8
commit 1129726bbd
3 changed files with 12 additions and 2 deletions

View File

@@ -68,7 +68,10 @@ class _GroupAccessDeniedScreenState extends SafeState<GroupAccessDeniedScreen> {
style: TextStyle(fontSize: 20),
),
Spacer(),
Text(tr("A registration is required to access this group page.")),
Text(
tr("A registration is required to access this group page."),
textAlign: TextAlign.center,
),
Spacer(),
GroupMembershipWidget(
group: _group,

View File

@@ -140,6 +140,7 @@ class _GroupMembershipWidgetState extends SafeState<GroupMembershipWidget> {
return RichText(
text: TextSpan(
text: tr("Request membership"),
style: blackForWhiteTheme(),
recognizer: TapGestureRecognizer()
..onTap = () => _requestMembership()),
);