Skip to content

Instantly share code, notes, and snippets.

@kwmt
Created December 10, 2018 14:43
Show Gist options
  • Save kwmt/510622c9276d962afb7803c75dbdb6c2 to your computer and use it in GitHub Desktop.
Save kwmt/510622c9276d962afb7803c75dbdb6c2 to your computer and use it in GitHub Desktop.
flutter sign-in button snippet
MaterialButton(
child: signInButton(Strings.of(context).signInWithGoogle,
'assets/images/google.png'),
onPressed: _isAgree ? _handleSignInWithGoogle : _showError,
color: Colors.white,
)
import 'package:flutter/material.dart';
Widget signInButton(title, uri,
[color = const Color.fromRGBO(68, 68, 76, .8)]) {
return Container(
padding: const EdgeInsets.all(16.0),
child: Center(
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Image.asset(
uri,
width: 25.0,
),
Padding(
child: Text(
title,
style: TextStyle(
fontFamily: 'Roboto',
color: color,
),
),
padding: EdgeInsets.only(left: 15.0),
),
],
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment