Skip to content

Instantly share code, notes, and snippets.

View kspo's full-sized avatar
🐢
To The Mooon

Selman Poyraz kspo

🐢
To The Mooon
View GitHub Profile
@kspo
kspo / multiple_theme.dart
Last active October 25, 2023 20:49
Flutter Multiple Theme Adoption
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class ThemeStuff {
static ThemeStuff? _instance;
static ThemeStuff get instance {
_instance ??= ThemeStuff._init();