easy_box 0.1.1
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.
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,
),
),
)));
}