ajustes logo e navigação tela historico

This commit is contained in:
Reginaldo
2023-08-16 11:25:47 -03:00
parent 21aa9e8e1c
commit 94a181e767
28 changed files with 38 additions and 129 deletions

View File

@@ -222,9 +222,12 @@ class _TelaLoginState extends State<TelaLogin> {
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: PaletaCores.branco,
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
body: Container(
padding: EdgeInsets.all(Dimensoes.width*0.15),
width: Dimensoes.width,
height: Dimensoes.height,
alignment: Alignment.center,
child: ListView(
children: [
GestureDetector(
onTap: carregando?null:()=>setState((){
@@ -265,6 +268,7 @@ class _TelaLoginState extends State<TelaLogin> {
FilteringTextInputFormatter.digitsOnly,
CpfInputFormatter(),
],
textInputType: TextInputType.number,
controller: inputLogin,
title: 'Login',
width: Dimensoes.width>900? Dimensoes.width * 0.18:Dimensoes.width*0.7,