simple_sizedbox 0.0.1
simple_sizedbox: ^0.0.1 copied to clipboard
A Flutter package that provides convenient extensions for creating SizedBoxes with height and width using numerical values.
import 'package:flutter/material.dart';
import 'package:simple_sizedbox/simple_sizedbox.dart';
void main() {
runApp(MaterialApp(
home: Scaffold(
body: Column(
children: [
15.height, // Paketdan foydalanish
Container(color: Colors.blue, height: 50, width: 50),
],
),
),
));
}