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

A collection of Flex widgets (Columns and Rows) with additional functionality.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: PaddedColumn(
          padding: EdgeInsets.all(20),
          children: [
            Flexible(
              child: ExpandedScrollingRow(children: [
                Expanded(child: Container(width: 400, color: Colors.blue)),
                Expanded(
                    child: Container(
                  width: 400,
                  color: Colors.purple,
                  child: ExpandedScrollingColumn(
                    children: [
                      Text("TOP CONTENT", style: TextStyle(fontSize: 20)),
                      Expanded(
                        child: Container(height: 400, child: Text("MIDDLE CONTENT"), alignment: Alignment.center),
                      ),
                      Text("BOTTOM CONTENT", style: TextStyle(fontSize: 20)),
                    ],
                  ),
                )),
              ]),
            ),
            SeparatedRow(children: [
              Expanded(child: Container(width: 200, height: 20, color: Colors.green)),
              Expanded(child: Container(width: 200, height: 20, color: Colors.green)),
            ], separatorBuilder: () => Text("divider"))
          ],
        ),
      ),
    );
  }
}
123
likes
120
pub points
95%
popularity

Publisher

verified publishergskinner.com

A collection of Flex widgets (Columns and Rows) with additional functionality.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flextras