inserido o progress indicator

This commit is contained in:
Reginaldo
2023-05-16 16:45:00 -03:00
parent 6e6a87ec64
commit a897a00b39
43 changed files with 478 additions and 329 deletions

View File

@@ -10,6 +10,7 @@ import 'package:rkm/widgets/text_default.dart';
import '../../controllers/main_controllers.dart';
import '../../service/api/api_data_load.dart';
import '../../service/db/db_sqlite_load.dart';
import '../../widgets/title_input.dart';
class LoginSavedScreen extends StatefulWidget {
List listControl;
@@ -156,17 +157,17 @@ class _LoginSavedScreenState extends State<LoginSavedScreen> {
height: height*0.2,
child: ListView(
children: [
TitleInput(title:'Usuário'),
InputText(
hint: 'Usuário',
label: inputUser.text.isNotEmpty?'':'Usuário',
title: 'Usuário',
controller: inputUser,
width: width*0.6,
colorBorder: Colors.white,
onChanged: (v)=>setState((){}),
),
TitleInput(title:'Senha'),
InputText(
hint: 'Senha',
label: inputPassword.text.isNotEmpty?'':'Senha',
title: 'Senha',
obscure: true,
controller: inputPassword,
width: width*0.6,