Skip to content

Instantly share code, notes, and snippets.

View nhat292's full-sized avatar
🇻🇳

Nhat Nguyen nhat292

🇻🇳
View GitHub Profile
@nhat292
nhat292 / Apple_mobile_device_types.txt
Created January 3, 2025 08:43 — forked from adamawolf/Apple_mobile_device_types.txt
List of Apple's mobile device codes types a.k.a. machine ids (e.g. `iPhone1,1`, `Watch1,1`, etc.) and their matching product names
i386 : iPhone Simulator
x86_64 : iPhone Simulator
arm64 : iPhone Simulator
iPhone1,1 : iPhone
iPhone1,2 : iPhone 3G
iPhone2,1 : iPhone 3GS
iPhone3,1 : iPhone 4
iPhone3,2 : iPhone 4 GSM Rev A
iPhone3,3 : iPhone 4 CDMA
iPhone4,1 : iPhone 4S
@nhat292
nhat292 / simple_auth_flow_flutter_firebase.dart
Created July 12, 2021 05:11 — forked from bizz84/simple_auth_flow_flutter_firebase.dart
Simple Authentication Flow with Flutter & Firebase
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',