E
Size: a a a
E
D
A
P
P
A
P
VP
ВЛ
𝕷
A
D
MZ
MZ
Container(
height: 80,
padding: EdgeInsets.all(10),
child: serverField,
),
Container(
height: 80,
padding: EdgeInsets.all(10),
child: username,
),
Container(
height: 80,
padding: EdgeInsets.all(10),
child: password,
),
SizedBox(height: 60),
Container(
height: 80,
padding: EdgeInsets.symmetric(vertical: 10, horizontal: 0),
child: authButton,
),
MZ
var authButton = MaterialButton(
onPressed: () {
_signIn();
},
child: Container(
padding: EdgeInsets.all(0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
gradient: LinearGradient(
colors: [
Color.fromRGBO(72, 78, 218, 1),
ThemeHolder().primaryColor,
]
)
),
child: Center(
child: Text(AppLocalizations.
localizedStrings['sign_in'],
textAlign: TextAlign.center,
style: new TextStyle(
color: Colors.
white,
fontFamily: 'GothamPro',
fontSize: 18.0)),
)),
);
МИ
МИ