15
6
DO place Expanded and Flexible widgets inside a Row, Column, or Flex.
Center( child: Expanded( child: Container(), ), )
Row( children: [ Expanded( child: Container(), ), ], )
To enable the proper_expanded_and_flexible rule, add proper_expanded_and_flexible under custom_lint > rules in your analysis_options.yaml file:
proper_expanded_and_flexible
analysis_options.yaml
custom_lint: rules: - proper_expanded_and_flexible