responsive_framework 1.4.0 copy "responsive_framework: ^1.4.0" to clipboard
responsive_framework: ^1.4.0 copied to clipboard

Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple.

Changelog #

1.4.0 #

  • Update license.

1.3.0 #

  • Refactor Library Imports.
    • Unify library imports.
  • Restore const Conditions.
    • Fix copyWith type.
  • Update examples.
  • Fix ResponsiveVisibility nullable type error.

1.2.0 #

  • Flutter v3.19 update.
  • ResponsiveValue nullable type support.
  • Update ResponsiveRowColumn to use underlying Flex instead of Row and Columns.
    • Preserves nested widget state when switching between Rows and Columns.
  • Fix landscape incorrectly set to always true.

1.1.1 #

  • v1.0.0 migration guide: Migration Guide
  • Fix landscape values null.
  • Remove names and comments of deprecated ResponsiveWrapper in code.

1.1.0 #

  • Breaking Change - Responsive Value Condition is no longer constant to support inheriting type nullability.
  • Simplify example.

1.0.0 #

  • New ResponsiveBreakpoints widget.
  • Deprecated ResponsiveWrapper widget.

0.2.0 #

Legacy ResponsiveWrapper implementation.

Usage instructions:

responsive_framework: 0.2.0

Add ResponsiveWrapper.builder to your MaterialApp or CupertinoApp.

import 'package:responsive_framework/responsive_framework.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      builder: (context, child) => ResponsiveWrapper.builder(
          child,
          maxWidth: 1200,
          minWidth: 480,
          defaultScale: true,
          breakpoints: [
            ResponsiveBreakpoint.resize(480, name: MOBILE),
            ResponsiveBreakpoint.autoScale(800, name: TABLET),
            ResponsiveBreakpoint.resize(1000, name: DESKTOP),
          ],
          background: Container(color: Color(0xFFF5F5F5))),
      initialRoute: "/",
    );
  }
}
2806
likes
140
pub points
99%
popularity

Publisher

verified publishercodelessly.com

Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (LICENSE)

Dependencies

collection, flutter

More

Packages that depend on responsive_framework