responsive_screen_type 1.0.3 responsive_screen_type: ^1.0.3 copied to clipboard
A new flutter utility to easily create responsive screens in your flutter application.
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(),
);
}
}