splittable_flexible_row 1.0.1
splittable_flexible_row: ^1.0.1 copied to clipboard
Simple package to ease the creation of flexible flutter layouts using Row() widgets which can dynamically split into multiple rows based on the device's screen width.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add splittable_flexible_row
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
splittable_flexible_row: ^1.0.1
copied to clipboard
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:splittable_flexible_row/splittable_flexible_row.dart';
copied to clipboard