12 lines
328 B
Dart
12 lines
328 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:sigap/src/utils/constants/sizes.dart';
|
|
|
|
class DSpacingStyle {
|
|
static const EdgeInsetsGeometry paddingWithAppBarHeight = EdgeInsets.only(
|
|
top: TSizes.appBarHeight,
|
|
left: TSizes.defaultSpace,
|
|
right: TSizes.defaultSpace,
|
|
bottom: TSizes.defaultSpace,
|
|
);
|
|
}
|