Easy_padding

You can add padding to any widgets with easy_padding package.

Getting started

To install this package, open pubspec.yaml file and add to dependencies.

dependencies:
  ...
  on_click ^0.0.2

Also you can install package from terminal, write following command in terminal

flutter pub add easy_padding

Usage

After installing import package

import 'package:on_click/on_click.dart';

Example

Text('data').all(50),
CircleAvatar(
    backgroundColor: Colors.yellow,
   ).only(
    top: 15, 
    left: 30, 
    right: 40,
   ),