Skip to content

Instantly share code, notes, and snippets.

@kleberksms
Created July 20, 2020 05:48
Show Gist options
  • Select an option

  • Save kleberksms/88407a7ba36be94089f38191322d095f to your computer and use it in GitHub Desktop.

Select an option

Save kleberksms/88407a7ba36be94089f38191322d095f to your computer and use it in GitHub Desktop.
Material(
elevation: 15,
shadowColor: Colors.black54,
child: Column(
children: <Widget>[
Container(
decoration: BoxDecoration(color: Colors.white),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.max,
children: <Widget>[
Container(
decoration: BoxDecoration(
border: Border(
right: BorderSide(
color: Color(0xFFDBDCDD),
),
),
),
child: Padding(
padding: EdgeInsets.only(
left: 10,
top: 0,
right: 10,
bottom: 0,
),
child: new Icon(Icons.lock, color: Color(0xff60646A)),
),
height: 25,
),
Expanded(
child: TextFormField(
style: new TextStyle(color: Color(0xFF61656C)),
decoration: InputDecoration(
hintText: 'Sua senha',
fillColor: Colors.white,
filled: true,
contentPadding:
EdgeInsets.fromLTRB(10.0, 15.0, 20.0, 10.0),
border: InputBorder.none,
focusedBorder: InputBorder.none,
enabledBorder: InputBorder.none,
errorBorder: InputBorder.none,
disabledBorder: InputBorder.none,
),
),
),
],
),
),
],
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment