add adaptive_scaffold

This commit is contained in:
shenlong-tanwen
2024-05-24 09:42:02 +05:30
parent fb6253d2d1
commit 1631df70e9
295 changed files with 2540 additions and 44480 deletions
@@ -0,0 +1,4 @@
import 'package:flutter/material.dart';
/// Global ScaffoldMessengerKey to show snackbars
final GlobalKey<ScaffoldMessengerState> kScafMessengerKey = GlobalKey();
@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
@immutable
class SizeConstants {
const SizeConstants._();
static const s = 8.0;
static const m = 16.0;
static const l = 32.0;
static const xl = 64.0;
}