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

Flutter UI scalable layout scheme. We want to be able to adapt perfectly to different resolution devices. Scales to the width of the screen.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'basic.dart';
import 'menu.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  static const String _title = 'Screen Flexible Demo';

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: _title,
      initialRoute: '/',
      routes: {
        '/': (context) => MenuListPage(),
        '/basic': (context) => BasicLayoutPage(),
      },
    );
  }
}
7
likes
120
pub points
54%
popularity

Publisher

verified publishersongfei.org

Flutter UI scalable layout scheme. We want to be able to adapt perfectly to different resolution devices. Scales to the width of the screen.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flexible