Fix text color
This commit is contained in:
parent
910c63303e
commit
b55d969065
1 changed files with 7 additions and 2 deletions
|
@ -89,16 +89,21 @@ class ChildSubscriptionWidget extends StatelessWidget {
|
|||
child: RichText(
|
||||
textAlign: TextAlign.center,
|
||||
text: TextSpan(
|
||||
children: const [
|
||||
children: [
|
||||
TextSpan(
|
||||
text: "Please contact ",
|
||||
style: Theme.of(context).textTheme.bodyText2,
|
||||
),
|
||||
TextSpan(
|
||||
text: "support@ente.io",
|
||||
style: TextStyle(color: Color.fromRGBO(29, 185, 84, 1)),
|
||||
style: Theme.of(context)
|
||||
.textTheme
|
||||
.bodyText2
|
||||
.copyWith(color: Color.fromRGBO(29, 185, 84, 1)),
|
||||
),
|
||||
TextSpan(
|
||||
text: " for help",
|
||||
style: Theme.of(context).textTheme.bodyText2,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue