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

outdated

You can add and get custom size,orientation of any type of widgets. In size, you can add and get width,height of the device and widgets and You also get the full height and width of particular devices [...]

Language: English

You can add and get custom size,orientation of any type of widgets. In size, you can add and get width,height of the device and widgets and You also get the full height and width of particular devices. This packages is developed for all platforms. This purpose of creating this package is to save time and increase productivity.

Get started #

Add dependency #

dependencies:
  flutter_size: ^0.0.3

Features #

  • Cross platform: mobile, desktop, browser
  • Simple, powerful, & Easy to use
  • NO native dependencies
  • Time Saving & improve productivity

Usage #

import 'package:flutter_size/get_size.dart';
class GetSize extends StatefulWidget {
  const GetSize({Key? key}) : super(key: key);

  @override
  State<GetSize> createState() => _GetSizeState();
}

class _GetSizeState extends State<GetSize> {
  @override
  Widget build(BuildContext context) {
    return Center(child : Container(
      width : context.width(0.3),
      height : context.height(0.9),
    ),
    );
  }
}

4
likes
0
points
179
downloads

Publisher

unverified uploader

Weekly Downloads

You can add and get custom size,orientation of any type of widgets. In size, you can add and get width,height of the device and widgets and You also get the full height and width of particular devices.This purpose of creating this package is to save time and increase productivity.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_size