flutter_responsive_ui_plus 1.0.1 copy "flutter_responsive_ui_plus: ^1.0.1" to clipboard
flutter_responsive_ui_plus: ^1.0.1 copied to clipboard

A Flutter package that provides fully responsive UI widgets including Row, Column, Grid, Padding, Text, and Container. Automatically adapts layouts for mobile, tablet, and desktop without manual size [...]

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_responsive_ui_plus/flutter_responsive_ui.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Responsive UI Example'),
        ),
        body: ResponsiveColumn(
          children: [
            ResponsiveGrid(
              children: List.generate(
                12,
                (i) => Card(child: Center(child: Text('Item ${i + 1}'))),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
3
likes
140
points
121
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides fully responsive UI widgets including Row, Column, Grid, Padding, Text, and Container. Automatically adapts layouts for mobile, tablet, and desktop without manual size calculations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_responsive_ui_plus