flutter_responsive_builder 0.0.1 copy "flutter_responsive_builder: ^0.0.1" to clipboard
flutter_responsive_builder: ^0.0.1 copied to clipboard

This Package Use For Build Responsive Layout.

Sample Code

class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key);

// This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Responsive Builder', theme: ThemeData( primarySwatch: Colors.blue, ), home: ResponsiveBuilder( mobile: Container(), // Write code for Mobile view (Its Required) web: Container(), // Write code for Web view (Its Required) desktop: Container(),// Write code for Destop view tablet: Container(), // Write code for Tablet view ), ); } }

1
likes
100
pub points
55%
popularity

Publisher

unverified uploader

This Package Use For Build Responsive Layout.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_responsive_builder