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

A Flutter package that will make your size responsive base on device orientation and scale text font size.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:responsive_size_extension/responsive_size_extension.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text(
            'Hello World',
            style: TextStyle(fontSize: 14.scale),
          ),
        ),
      ),
    );
  }
}
4
likes
160
points
22
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that will make your size responsive base on device orientation and scale text font size.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on responsive_size_extension