Skip to content

Instantly share code, notes, and snippets.

View Kymoraa's full-sized avatar
📚
Learning

Jackie Moraa Kymoraa

📚
Learning
View GitHub Profile
@Kymoraa
Kymoraa / main.dart
Last active July 6, 2022 18:36
Notched BottomAppBar in Flutter
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
@Kymoraa
Kymoraa / board.dart
Last active April 28, 2022 19:19
Manage assetAudioPlayer during AppLifecycleState
...
@override
void initState() {
super.initState();
numbers.shuffle();
WidgetsBinding.instance?.addObserver(this);
}
@override
@Kymoraa
Kymoraa / main.dart
Last active December 2, 2021 17:17
// Dependencies
// RunApp
...
class MyInbox extends StatelessWidget {
const MyInbox({Key? key}) : super(key: key);
@override