responsive_screen_type 1.0.3 copy "responsive_screen_type: ^1.0.3" to clipboard
responsive_screen_type: ^1.0.3 copied to clipboard

A new flutter utility to easily create responsive screens in your flutter application.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'view/responsive_view.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Flutter responsive_screen',
      home:  ResponsiveView(),
    );
  }
}
1
likes
150
pub points
58%
popularity

Publisher

verified publisherghoneem.com

A new flutter utility to easily create responsive screens in your flutter application.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on responsive_screen_type