breakpoints_mq 3.1.0 copy "breakpoints_mq: ^3.1.0" to clipboard
breakpoints_mq: ^3.1.0 copied to clipboard

A lightweight library for implementing Responsive layout grid. Provide body, margin.

example/lib/main.dart

import 'package:example/breakpoint_demo_screen.dart';
import 'package:example/breakpoint_widget_demo_screen.dart';
import 'package:flutter/material.dart';
import 'package:breakpoints_mq/breakpoints_mq.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Breakpoints Demo',
      theme: ThemeData.from(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.blue,
          brightness: Brightness.light,
        ),
        useMaterial3: true,
      ),
      darkTheme: ThemeData.from(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.blue,
          brightness: Brightness.dark,
        ),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Breakpoints Demo Home'),
      ),
      body: Center(
        child: BreakpointWidget(
          child: Column(
            mainAxisSize: MainAxisSize.min,
            children: [
              OutlinedButton(
                onPressed: () {
                  Navigator.of(context).push(
                    MaterialPageRoute(
                      builder: (context) => const BreakpointDemoScreen(),
                    ),
                  );
                },
                child: const Text('Show breakpoint demo'),
              ),
              const SizedBox(
                height: 16,
              ),
              OutlinedButton(
                onPressed: () {
                  Navigator.of(context).push(
                    MaterialPageRoute(
                      builder: (context) => const BreakpointWidgetDemoScreen(),
                    ),
                  );
                },
                child: const Text('Show breakpoint widget demo'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
0
likes
130
pub points
67%
popularity

Publisher

unverified uploader

A lightweight library for implementing Responsive layout grid. Provide body, margin.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on breakpoints_mq