widget_ext.dart 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import 'package:flutter/material.dart'; extension WidgetExt on Widget { Expanded expanded({int flex = 1}) { return Expanded(flex: flex, child: this); } SafeArea safe() { return SafeArea(child: this); } }