Skip to content

Instantly share code, notes, and snippets.

View mxm5's full-sized avatar
🎯
Focusing

mohammad mohammadian mxm5

🎯
Focusing
View GitHub Profile
@mxm5
mxm5 / HomePage.dart
Created March 28, 2021 11:31 — forked from carzacc/HomePage.dart
Flutter app for JWT tutorial
class HomePage extends StatelessWidget {
HomePage(this.jwt, this.payload);
factory HomePage.fromBase64(String jwt) =>
HomePage(
jwt,
json.decode(
ascii.decode(
base64.decode(base64.normalize(jwt.split(".")[1]))
)
@mxm5
mxm5 / .gitignore
Created January 27, 2021 15:15 — forked from pingrishabh/.gitignore
Standardised gitignore for your Flutter apps & Dart projects
### Flutter Generated
# Miscellaneous
*.class
*.lock
*.log
*.pyc
*.swp
.DS_Store
.atom/