Skip to content

Instantly share code, notes, and snippets.

@Shubham-Narkhede
Created January 24, 2020 03:04
Show Gist options
  • Save Shubham-Narkhede/221b68a3e146ab0a458a0d25b1328032 to your computer and use it in GitHub Desktop.
Save Shubham-Narkhede/221b68a3e146ab0a458a0d25b1328032 to your computer and use it in GitHub Desktop.
static Widget buildSignupSigninBtn(var quetion, var pageName, Function function) {
return Padding(padding: EdgeInsets.only(bottom: 0,top: 5),child: GestureDetector(
onTap: () {
function();
},
child: RichText(
text: TextSpan(
children: [
TextSpan(
text: quetion,
style: TextStyle(
color: Colors.white,
fontSize: 18.0,
fontWeight: FontWeight.w400,
),
),
TextSpan(
text: pageName,
style: TextStyle(
color: Colors.white,
fontSize: 18.0,
fontWeight: FontWeight.bold,
),
),
],
),
),
),);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment