ajustes no layout

This commit is contained in:
Reginaldo
2023-05-10 15:42:46 -03:00
parent b0843e8376
commit 6e6a87ec64
3 changed files with 34 additions and 12 deletions

View File

@@ -191,12 +191,12 @@ class _ServiceIndividualScreenState extends State<ServiceIndividualScreen> {
),
DropdownWithSubtitle(
list: ConstVariable().typeService2,
widthSubtitle: width*0.2,
widthSubtitle: width*0.55,
subtitle: 'Tipo de Atendimento',
hintDropdown: 'Tipo de Atendimento',
select: selectTypeService,
widthDropdown: width*0.7,
widthContainerDropdown: width*0.65,
widthContainerDropdown: width*0.6,
onChanged: (value){
setState(() {
selectTypeService = value!;
@@ -432,18 +432,18 @@ class _ServiceIndividualScreenState extends State<ServiceIndividualScreen> {
child: Icon(LineIcons.edit,size: 80,),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 10.0),
padding: const EdgeInsets.symmetric(horizontal: 0.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
DropdownWithSubtitle(
list: ['ATENÇÃO DOMICILIAR 1','ATENÇÃO DOMICILIAR 2','ATENÇÃO DOMICILIAR 3',],
widthSubtitle: width*0.2,
widthSubtitle: width*0.5,
subtitle: 'Modalidade',
hintDropdown:'Modalidade',
select: selectModelService,
widthDropdown: width*0.65,
widthDropdown: width*0.7,
widthContainerDropdown: width*0.6,
onChanged: (value)=>setState(()=>selectModelService = value!),
colorBorder: ColorPalette.white,
@@ -685,11 +685,11 @@ class _ServiceIndividualScreenState extends State<ServiceIndividualScreen> {
'AYURVEDA',
'OUTROS',
],
widthSubtitle: width*0.2,
widthSubtitle: width*0.5,
subtitle: 'Racionalidade em Saúde',
hintDropdown: 'Racionalidade em Saúde',
select: selectRationalityHealth,
widthDropdown: width*0.65,
widthDropdown: width*0.7,
widthContainerDropdown: width*0.6,
onChanged: (value)=>setState(()=>selectRationalityHealth = value!),
colorBorder: ColorPalette.white,