Skip to content

Instantly share code, notes, and snippets.

View Aladdin-Shaker's full-sized avatar

Aladdin-Shaker Aladdin-Shaker

  • Turkey
View GitHub Profile
@onatcipli
onatcipli / go_router_example.dart
Last active August 25, 2025 07:37
go_router_example.dart
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
main() {
CustomNavigationHelper.instance;
runApp(const App());
}
class App extends StatelessWidget {
const App({Key? key}) : super(key: key);
@minhcasi
minhcasi / Flutter Clean.md
Last active September 19, 2025 17:54
These are common issues on Flutter and solutions to fix

Quick Clean Cache

  1. Open android studio Tools->Flutter->Clean
  2. Go to File -> Invalidate Caches / Restart
  3. Or open terminal run "flutter clean"
  4. Remove pubspec.lock
  5. Double check the Flutter SDK Path config correcty - https://tppr.me/qn6dP

Or open the terminal and try this script:

flutter clean
@staltz
staltz / introrx.md
Last active May 7, 2026 01:31
The introduction to Reactive Programming you've been missing