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;'
],