responsiveness_handler 0.0.3 copy "responsiveness_handler: ^0.0.3" to clipboard
responsiveness_handler: ^0.0.3 copied to clipboard

This package helps to manage app layout displaying responsiveness across devices

TODO: This package helps manage app layout responsively by redering all widgets based on the device size and orientation, It has inbuilt extensions for all widgets which can be applied easily hereby giving the widget/component a dynamic value in size. This is then rendered responsively based on the media query data gotten from the device

Features #

TODO: Simply apply the extensions on the widget size parameters such as (fontSize, height, width) when creating your widgets

Getting started #

TODO: Runs on android, IOS and web

Usage #

TODO: render your widget size parameters with the extensions provided by the pacakage.

         Text(
            "data",
            style: TextStyle(fontSize: 50.fSize),
          ),

          //useage for sized box
          SizedBox(
            height: 100.h,
          ),

          //useage for container and image
          Container(
            height: 100.h,
            width: MediaQuery.of(context).size.width,
            child: Image.asset(
              "name",
              height: 20.adaptSize,
            ),
          )
10
likes
160
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

This package helps to manage app layout displaying responsiveness across devices

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on responsiveness_handler