first commit

This commit is contained in:
Aditya Siregar
2025-07-30 22:38:44 +07:00
commit 73320561b0
444 changed files with 64633 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
import 'package:flutter/material.dart';
class AppColors {
/// primary = #3949AB
static const Color primary = Color(0xff6466f1);
/// grey = #B7B7B7
static const Color grey = Color(0xffB7B7B7);
/// light = #F8F5FF
static const Color light = Color(0xffF8F5FF);
/// blueLight = #C7D0EB
static const Color blueLight = Color(0xffC7D0EB);
/// black = #000000
static const Color black = Color(0xff000000);
/// white = #FFFFFF
static const Color white = Color(0xffFFFFFF);
/// green = #50C474
static const Color green = Color(0xff50C474);
/// red = #F4261A
static const Color red = Color(0xffF4261A);
/// card = #E5E5E5
static const Color card = Color(0xffE5E5E5);
/// disabled = #C8D1E1
static const Color disabled = Color(0xffC8D1E1);
/// subtitle = #7890CD
static const Color subtitle = Color(0xff7890CD);
/// stroke = #EFF0F6
static const Color stroke = Color(0xffEFF0F6);
}
+6
View File
@@ -0,0 +1,6 @@
class Variables {
static const String appName = 'POS Kasir Resto App';
static const String apiVersion = 'v1';
// static const String baseUrl = 'http://192.168.1.202:8000';
static const String baseUrl = 'https://pos-app-tablet.enaklo.co.id';
}