easy_box 0.1.1 copy "easy_box: ^0.1.1" to clipboard
easy_box: ^0.1.1 copied to clipboard

All in one widget, with all the most basic widget properties. Composing a tree of widgets depending on the properties that you request. Just organize everything with the Box.

example/lib/main.dart

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

void main() {
  runApp(MaterialApp(
      home: Scaffold(
    body: Box(
      padding: EdgeInsets.all(10),
      backgroundColor: Colors.green,
      alignment: Alignment.center,
      child: Text('test'),
      textStyle: TextStyle(
        fontSize: 20,
        color: Colors.white,
      ),
    ),
  )));
}
2
likes
140
pub points
0%
popularity

Publisher

verified publisherdrafakiller.com

All in one widget, with all the most basic widget properties. Composing a tree of widgets depending on the properties that you request. Just organize everything with the Box.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on easy_box