forked from firka/student-legacy
fixed notes ui bug
This commit is contained in:
parent
329ad57e36
commit
ee386d085c
@ -135,10 +135,12 @@ class NotesPageState extends State<NotesPage> with TickerProviderStateMixin {
|
|||||||
title: Text('your_notes'.i18n),
|
title: Text('your_notes'.i18n),
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
isTransparent: true,
|
isTransparent: true,
|
||||||
child: Wrap(
|
child: Center(
|
||||||
spacing: 18.0,
|
child: Wrap(
|
||||||
runSpacing: 18.0,
|
spacing: 18.0,
|
||||||
children: selfNoteTiles,
|
runSpacing: 18.0,
|
||||||
|
children: selfNoteTiles,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
@ -17,8 +17,8 @@ class SelfNoteTile extends StatelessWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Container(
|
Container(
|
||||||
height: 172.0,
|
height: MediaQuery.of(context).size.width / 2.42,
|
||||||
width: 172.0,
|
width: MediaQuery.of(context).size.width / 2.42,
|
||||||
padding: const EdgeInsets.all(10.0),
|
padding: const EdgeInsets.all(10.0),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(16.0),
|
borderRadius: BorderRadius.circular(16.0),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user