flutter_constraintlayout 1.0.3-stable flutter_constraintlayout: ^1.0.3-stable copied to clipboard
A super powerful Stack, build flexible layouts with constraints. Similar to ConstraintLayout for Android and AutoLayout for iOS. But the code implementation is much more efficient, it has O(n) layout [...]
import 'package:flutter/material.dart';
import 'home.dart';
void main() {
runApp(MaterialApp(
home: ExampleHome(),
));
}