Files
FlutterUnit/lib/app/res/style/gap_unit.dart
2021-09-27 09:38:18 +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);
}