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
150
points
22
downloads

Publisher

verified publisherdrafakiller.com

Weekly Downloads

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)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on easy_box