Skip to content

Instantly share code, notes, and snippets.

@TheOnlyArtz
Created April 17, 2020 18:27
Show Gist options
  • Save TheOnlyArtz/c87e9bd7ee612db25affd33bd7b0f9c3 to your computer and use it in GitHub Desktop.
Save TheOnlyArtz/c87e9bd7ee612db25affd33bd7b0f9c3 to your computer and use it in GitHub Desktop.
Padding(
padding: const EdgeInsets.only(top: 55.0, right: 45.0),
child: Row(
children: <Widget>[
RichText(
text: TextSpan(
style: TextStyle(
fontSize: 30,
color: Theme.of(context).textSelectionColor,
letterSpacing: 0.1),
children: <TextSpan>[
TextSpan(
text: "Portrait ",
),
TextSpan(
text: "Painting",
style: TextStyle(
fontWeight: FontWeight.w600,
fontFamily: "OpenSans",
))
])),
Text("sadgasg"),
],
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment