any_screen 0.1.0 copy "any_screen: ^0.1.0" to clipboard
any_screen: ^0.1.0 copied to clipboard

A flutter package that simplifies the process of building responsive UIs

example/lib/main.dart

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

void main() {
  // if u want to change default config
  AnyScreenDefaultConfig.setConfig(
    xs: 320,
    sm: 480,
    md: 768,
    lg: 1024,
    xl: 1366,
  );
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Flutter Demo',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: Scaffold(
          body: SafeArea(
            child: Column(
              children: [
                ResponsiveBuilder(
                  config: AnyScreenConfig(
                    xs: 320,
                    sm: 480,
                    md: 768,
                    lg: 1024,
                    xl: 1366,
                  ),
                  builder: (context, screenType, widgetSize) {
                    if (screenType == ScreenType.md) {
                      return Container(
                        color: Colors.red,
                        height: 100,
                        width: widgetSize.pWidth(50),
                      );
                    }
                    return Container(
                      color: Colors.red,
                      height: 100,
                      width: widgetSize.pWidth(100),
                    );
                  },
                ),
                Responsive(
                  xs: Container(
                    color: Colors.red,
                    height: 100,
                    width: 100,
                  ),
                  sm: Container(
                    color: Colors.green,
                    height: 100,
                    width: 100,
                  ),
                  md: Container(
                    color: Colors.blue,
                    height: 100,
                    width: 100,
                  ),
                  lg: Container(
                    color: Colors.yellow,
                    height: 100,
                    width: 100,
                  ),
                  xl: Container(
                    color: Colors.purple,
                    height: 100,
                    width: 100,
                  ),
                ),
                ResponsiveToggle(
                  showOnly: const [ScreenType.xs, ScreenType.sm],
                  child: Container(
                    color: Colors.red,
                    height: 100,
                    width: 100,
                  ),
                ),
                ResponsiveToggle(
                  showAfter: ScreenType.md,
                  child: Container(
                    color: Colors.green,
                    height: 100,
                    width: 100,
                  ),
                ),
              ],
            ),
          ),
        ));
  }
}
3
likes
0
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter package that simplifies the process of building responsive UIs

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on any_screen