flutter flutter Listview -> Container 'width' not working ?
/example/ ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
scaffold
body : ListView
children : [
Container (
width: 100, // Not Working
height: 100, // Ok
color: Colors.red.
),
]
!!! but !!!
scaffold
body : ListView
children : [
Stack(
children : [
Container (
width: 100, // OK
height: 100, // Ok
color: Colors.red.
),
]
why ??


