Files
FlutterUnit/lib/app/res/style/gap_unit.dart
2021-03-19 16:20:41 +08:00

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);
}