Skip to content

Instantly share code, notes, and snippets.

View joukhar's full-sized avatar
πŸ’­
nothing

joukhar

πŸ’­
nothing
View GitHub Profile
@joukhar
joukhar / folder_structure.txt
Last active April 13, 2024 06:59
best flutter project structure based on getx
└── lib
β”œβ”€β”€ app
β”œβ”€β”€ core
β”œβ”€β”€ configs
β”œβ”€β”€ constants
└── themes
β”œβ”€β”€ data
└── categories.dart
└── models
└── category.dart
@joukhar
joukhar / themes.dart
Created October 28, 2023 19:27 — forked from xrnd/themes.dart
Create custom themes for your flutter app
class Themes {
static const MaterialColor darkBlue = const MaterialColor(
_bluePrimaryValue,
const <int, Color>{
50: const Color(0xFFECEFF1),
100: const Color(0xFFCFD8DC),
200: const Color(0xFFB0BEC5),
300: const Color(0xFF90A4AE),
400: const Color(0xFF78909C),
500: const Color(_bluePrimaryValue),
@joukhar
joukhar / All currencies with country name and symbol - php array
Created July 24, 2022 15:32
All currencies with country name and symbol - php array
<?php
$currencies = [
'all' => [
'ALL' => [
'countryname' => 'Albania',
'name' => 'Albanian lek',
'symbol' => '&#76;&#101;&#107;'
],