Skip to content

Instantly share code, notes, and snippets.

View Slowhand0309's full-sized avatar
🏠
Working from home

Slowhand Slowhand0309

🏠
Working from home
View GitHub Profile
@Slowhand0309
Slowhand0309 / Android_Integration.txt
Last active March 1, 2025 02:56
[Flutter firebase_messaging note] #Flutter
// root build.gradle
dependencies {
// Add the google services classpath
classpath 'com.google.gms:google-services:4.3.2'
}
// app/build.gradle
// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'
@Slowhand0309
Slowhand0309 / README.md
Last active October 18, 2020 07:47
[Alfred Android emulator] list > run #Alfred
@Slowhand0309
Slowhand0309 / handling_back_button.dart
Created October 13, 2020 08:31
[Handling Back Button in Flutter] #Flutter
class MyApp extends StatelessWidget {
Future<bool> _onBackPressed() {
// true -> go back
// false -> back cancel
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
@Slowhand0309
Slowhand0309 / README.md
Last active November 7, 2020 19:49
Alfred Workflow: VSCode Remote Containers