[플러터] GridView 에 대해서
GridView 란 열 수를 지정하여 그리드 형태로 표시하는 위젯입니다. GridView.count(crossAxisCount: 4, children: [ Container( color: Colors.blue, width: 100, height: 100, ), Container( color: Colors.red, width: 100, height: 100, ), Container( color: Colors.green, width: 100, height: 100, ) ], ) crossAxisCount : gridview 의 열(column) 개수입니다.
2020. 5. 1.
[플러터] ListView 에 대해서
ListView 는 리스트를 표시하는 위젯입니다. ListView( scrollDirection: Axis.vertical, children: [ ListTile( leading: Icon(Icons.home), title: Text('Home'), trailing: Icon(Icons.navigate_next), onTap: (){}, ), ListTile( leading: Icon(Icons.event), title : Text("Event"), trailing: Icon(Icons.navigate_next), onLongPress: (){}, ), ListTile( leading: Icon(Icons.camera), title: Text('Camera'), trailing: Icon(Icons.na..
2020. 5. 1.