responsive_widgets 2.0.1 copy "responsive_widgets: ^2.0.1" to clipboard
responsive_widgets: ^2.0.1 copied to clipboard

This plugin helps to create responsive widgets, that makes an auto-size with the proportion between reference ScreenSize and the screen that the app is running.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'home_screen.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowMaterialGrid: true,
      home: HomeScreen(),
    );
  }
}
64
likes
40
pub points
76%
popularity

Publisher

verified publisherpolazzo.dev

This plugin helps to create responsive widgets, that makes an auto-size with the proportion between reference ScreenSize and the screen that the app is running.

Homepage
Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, flutter_screenutil

More

Packages that depend on responsive_widgets