From f91c8100be4f92e17601f51ea58255c359693618 Mon Sep 17 00:00:00 2001 From: marco Date: Mon, 2 Dec 2024 18:29:15 +0100 Subject: [PATCH] added breakpoints --- lib/services/breakpoints.dart | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/services/breakpoints.dart diff --git a/lib/services/breakpoints.dart b/lib/services/breakpoints.dart new file mode 100644 index 0000000..a3b1fbf --- /dev/null +++ b/lib/services/breakpoints.dart @@ -0,0 +1,7 @@ +class Breakpoints { + static const sm = 640; + static const md = 768; + static const lg = 1024; + static const xl = 1280; + static const xl2 = 1536; +}