ajuste no layout calendario
This commit is contained in:
@@ -177,21 +177,35 @@ class _TelaAgendaState extends State<TelaAgenda> {
|
||||
),
|
||||
],
|
||||
),
|
||||
_calendario,
|
||||
Container(
|
||||
height: 325,
|
||||
margin: EdgeInsets.symmetric(horizontal: 16.0),
|
||||
child: _calendario,
|
||||
),
|
||||
Container(
|
||||
padding: EdgeInsets.symmetric(vertical: 15),
|
||||
height: Dimensoes.height*0.45,
|
||||
child: ListView.builder(
|
||||
itemCount: listDatas.length,
|
||||
itemBuilder: (context,index){
|
||||
return ItemAgenda(data: listDatas[index].data, titulo: listDatas[index].titulo);
|
||||
},
|
||||
width: Dimensoes.width*0.8,
|
||||
height: 30,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 5.0),
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 0),
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: Dimensoes.width*0.2,
|
||||
child: TextCustom(text: 'DATA',size: 14.0,fontWeight: FontWeight.bold),
|
||||
),
|
||||
TextCustom(text: 'TÍTULO',size: 14.0,fontWeight: FontWeight.bold),
|
||||
],
|
||||
),
|
||||
),
|
||||
)
|
||||
),
|
||||
Container(width: double.infinity,height: 2,color: PaletaCores.divider,),
|
||||
Container(
|
||||
padding: EdgeInsets.symmetric(vertical: 0),
|
||||
height: Dimensoes.height*0.38,
|
||||
child: ListView.builder(
|
||||
itemCount: listDatas.length,
|
||||
itemBuilder: (context,index){
|
||||
return ItemAgenda(data: listDatas[index].data, titulo: listDatas[index].titulo);
|
||||
},
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user