Things to do when I start using Flutter apps
Launch my first mobile app on the Google Play store 3rd year student at Yoobee college with Bachelor's Degree in Software Development.
I have an interest in tackling a wide range of programming challenges. I enjoy working on some project with React, JavaScript, and Typescript, and I've also learned C++ for the backend projects. During my learning period, I took some of the Cloud courses like AWS Cloud fundamental and Microsoft Azure AI to get an idea for these two cloud platforms. During my semester break, I created my first mobile application by using the Flutter framework which makes me understand Dart language. The main reason the app is born was because I wanted to solve my problem and create an easy UX/UI "NOTEPAD" compare to other mobile app around the store.
My work mainly focus on Object-oriented programming (OOP) technique because I truly understand OOP programming code easy to maintain and organized. During my practice, I always maintain DRY (Don't repeat yourself) method in my work. I am also enjoy applied Agile methodology because I believe that divided project into smaller part able to get customer feedback immediately and make changes when needed.
Done two official certification, which is AWS Cloud fundamental and Microsoft Azure Ai fundamental
1) Removed the debug banner in the main.dart


The screenshot above is the code I added in my code at the main.dart file.
2) Make the System top bar transparent
Before change

@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Local Database demo app',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const NotesScreen(),
);
}
}
After change

@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Local Database demo app',
theme: ThemeData(
primarySwatch: Colors.blue,
appBarTheme: const AppBarTheme(
systemOverlayStyle: SystemUiOverlayStyle(statusBarColor: Colors.transparent)
),
),
home: const NotesScreen(),
);
}
}




