Flutter - Simple Padding

PHOTO EMBED

Sun Jan 30 2022 09:21:01 GMT+0000 (Coordinated Universal Time)

Saved by @abir_hasnat95 #flutter #dart

child: Padding(
                        padding: EdgeInsets.all(5),
                        child: Container(
                          height: 100,
                          width: 350,
                          color: Colors.amber[700],
                          child: Text(items[index].itemName), //Text
                        ),
                      ),
content_copyCOPY