Giter Site home page Giter Site logo

felipesantos75 / responsive_flutter Goto Github PK

View Code? Open in Web Editor NEW

This project forked from layounisl/responsive_flutter

0.0 0.0 0.0 16 KB

A Flutter package for scaling the size your apps UI and fontSize across different sized devices

Home Page: https://pub.dev/packages/responsive_flutter

License: MIT License

Dart 100.00%

responsive_flutter's Introduction

responsive_flutter

PRs Welcome

A Flutter package for scaling the size your apps UI and fontSize across different sized devices, insipired from react-native-size-matters and react-native-responsive-dimensions

Installation

You just need to add responsive_flutter as a dependency in your pubspec.yaml file.

dependencies:
  responsive_flutter: ^0.0.4

Usage

// Inside build function to pass context

@override
  Widget build(BuildContext context) {
    return Container(
        color: Colors.red,
        width: ResponsiveFlutter.of(context).scale(120),
        height: ResponsiveFlutter.of(context).verticalScale(100),
        padding: EdgeInsets.all(ResponsiveFlutter.of(context).moderateScale(8)),
        child: Text("Responsive flutter",
            style: TextStyle(fontSize: ResponsiveFlutter.of(context).fontSize(3))));
  }

Functions

  • wp(double percentage)
    Will return the percentage of the screen's width.

    // Example 20% of screen's width
    ResponsiveFlutter.of(context).wp(20)
  • hp(double percentage)
    Will return the percentage of the screen's height.

    // Example 20% of screen's height
    ResponsiveFlutter.of(context).hp(20)
  • fontSize(double size)
    Will return fontSize that occupies exactly size% of the screen size.

  • scale(double size)
    Will return linear scaled result of the provided size, based on your device's screen width.

  • verticalScale(double size)
    Will return linear scaled result of the provided size, based on your device's screen height.

  • moderateScale(double size, [double factor]) Sometimes you don't want to scale everything in a linear manner, that's where moderate scale comes in.
    The cool thing about it is that you can control the resize factor (default is 0.5).
    If normal scale will increase your size by +2X, moderateScale will only increase it by +X, for example:
    ➡️ scale(10) = 20
    ➡️ moderateScale(10) = 15
    ➡️ moderateScale(10, 0.1) = 11

responsive_flutter's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.