forked from lxm_flutter/FlutterUnit
10 lines
252 B
Dart
10 lines
252 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class GapUnit{
|
|
static const Widget H5 = SizedBox(width: 5);
|
|
static const Widget H10 = SizedBox(height: 10);
|
|
|
|
static const Widget W5 = SizedBox(width: 5);
|
|
static const Widget W10 = SizedBox(width: 10);
|
|
|
|
} |