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

outdated

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 'package:responsive_widgets_example/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(
      home: HomeScreen(),
    );
  }
}
64
likes
0
pub points
68%
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

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on responsive_widgets