Skip to content

Instantly share code, notes, and snippets.

@SongFuZhen
Last active October 26, 2020 09:51
Show Gist options
  • Save SongFuZhen/6d34b89bd7048a65d42c44c0c3b51a39 to your computer and use it in GitHub Desktop.
Save SongFuZhen/6d34b89bd7048a65d42c44c0c3b51a39 to your computer and use it in GitHub Desktop.
# App Widget Tree
App
└── ContactsProvider
└── MaterialApp
└── {Routes}
├── HomeScreen
│ └── Scaffold
│ ├── AppBar
│ ├── ListView
│ │ └── ContactListItem
│ └── FloatingActionButton
└── AddContactScreen
└── Scaffold
├── AppBar
└── Form
├── WordFormField
└── DatePickerField

Flutter Container MaxWidth

Container(
constraints: BoxConstraints(maxWidth:200)
...
)

Get Screen Width

使用MediaQuery查询

 MediaQuery.of(context).size.width * 0.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment