Browsing Tag
dart
31 posts
Celebrating Google Dev Library’s Women Contributors in AI/ML
Posted by Swathi Dharshna Subbaraj, Google Dev Library Women have made remarkable progress in advancing AI/ML technology through…
Restaurant Mobile App using flutter
UI credits : https://www.figma.com/file/iwl1DGD3FWKW6jfQzijpsh/Restaurant-Mobile-App-UI-Design-(Community) Results :: landing page sign up page login page forgot password page reset password…
Road to GDE
Recently, I became a Google Developer Expert (GDE) in the Flutter & Dart domain. I hope my experience…
flutter project currency converter
For Explanation watch video main.dart import 'package:flutter/material.dart'; import 'package:testapp/dollar_to_inr.dart'; import 'package:testapp/inr_to_dollar.dart'; void main() { runApp(MyApp()); } class MyApp…
random quote generator using flutter
For Explanation watch video code pubspec.yaml name: testapp description: A new Flutter project. # The following line prevents…
From Novice to Ninja: Your Ultimate Guide to Mastering Flutter
In the past two years, Flutter has rocketed to prominence with a staggering 532% growth in its developer…
decimal to binary converter and binary to decimal conversion app using flutter
main.dart import 'package:flutter/material.dart'; import 'package:testapp/decimal_to_binary.dart'; import './binary_to_decimal.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { //…
How to remove the debug banner in Flutter?
On your MaterialApp set debugShowCheckedModeBanner to false. MaterialApp( debugShowCheckedModeBanner: false, )
6 Flutter/Dart Projects from Google Dev Library to Kickstart Your Next Project
Posted by Swathi Dharshna Subbaraj, Project Coordinator, Google Dev Library Developers can build, test, and deploy any application…
Firebase App Distribution — Flutter
Firebase App Distribution — Flutter 💙💛 Sending apps to QA, the internal teams, testers from the client side, etc. is a…