Fix leave family widget visibility on light mode

This commit is contained in:
Neeraj Gupta 2022-06-06 20:57:45 +05:30
parent c600f2ea70
commit 7c34e7a989
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1
3 changed files with 11 additions and 13 deletions

BIN
assets/family sharing.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

View file

@ -25,8 +25,9 @@ class ChildSubscriptionWidget extends StatelessWidget {
children: [
Center(
child: Text(
"you are on a family plan!",
style: TextStyle(fontSize: 14, color: Colors.white),
"You are on a family plan!",
style:
Theme.of(context).textTheme.bodyText1.copyWith(fontSize: 14),
),
),
Padding(
@ -39,7 +40,7 @@ class ChildSubscriptionWidget extends StatelessWidget {
text: TextSpan(
children: [
TextSpan(
text: "please contact ",
text: "Please contact ",
),
TextSpan(
text: familyAdmin,
@ -49,10 +50,10 @@ class ChildSubscriptionWidget extends StatelessWidget {
text: " to manage your family subscription",
),
],
style: TextStyle(
fontFamily: 'Ubuntu',
fontSize: 14,
),
style: Theme.of(context)
.textTheme
.bodyText1
.copyWith(fontSize: 14),
),
),
),
@ -60,7 +61,7 @@ class ChildSubscriptionWidget extends StatelessWidget {
padding: const EdgeInsets.symmetric(vertical: 8),
),
Image.asset(
"assets/family_sharing.jpg",
"assets/family sharing.png",
height: 256,
),
Padding(
@ -99,7 +100,7 @@ class ChildSubscriptionWidget extends StatelessWidget {
text: TextSpan(
children: const [
TextSpan(
text: "please contact ",
text: "Please contact ",
),
TextSpan(
text: "support@ente.io",
@ -109,10 +110,7 @@ class ChildSubscriptionWidget extends StatelessWidget {
text: " for help",
),
],
style: TextStyle(
fontFamily: 'Ubuntu-Regular',
fontSize: 12,
),
style: Theme.of(context).textTheme.overline,
),
),
),