responsive_ui 1.1.0 responsive_ui: ^1.1.0 copied to clipboard
resposive_ui Flutter package helps you to create a responsive and Nested responsive widget. Works on all flutter platform (android, iOs ,web) with both portrait and landscape mode.
import 'example.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Responsive Example',
theme:
ThemeData(primaryColor: Colors.blue, accentColor: Colors.grey[400]),
home: ExamplePage(),
);
}
}