flutterstrap_ui 1.0.0 copy "flutterstrap_ui: ^1.0.0" to clipboard
flutterstrap_ui: ^1.0.0 copied to clipboard

A Flutter package to create responsive layouts. Designed to handle responsive layouts in Flutter web projects, it works for any platform.

example/lib/main.dart

import 'package:example/page_sample.dart';
import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'RsponsiveContainer Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const PageSample(),
    );
  }
}
7
likes
140
points
24
downloads

Publisher

verified publisherdevthis.it

Weekly Downloads

A Flutter package to create responsive layouts. Designed to handle responsive layouts in Flutter web projects, it works for any platform.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutterstrap_ui