flutter_research
flutter_research
Raj Joshi
[Parul University]
Submitted in March 2024
The primary objective of this thesis is to Dart, also developed by Google, is an object-
establish a comprehensive understanding of oriented programming language that supports
the application development process. This concepts such as classes and interfaces. The
research investigates the efficacy of an following code snippet illustrates a class in
application designed to address a Dart, which resembles the structure of
longstanding issue. Additionally, it offers a classes in many other object-oriented
documented application that can serve as a languages.
reference for individuals embarking on their
own Flutter application development ```dart
journey. The underlying hypothesis is that class Employee {
Fostlings will prove effective in mitigating String name;
the persistent issue of misinformation
regarding car parts online, thereby saving // Getter method
time typically wasted on navigating through String get emp_name {
numerous unreliable sources and facilitating return name;
more informed decision-making during }
significant purchases. The aim of this thesis
is to provide solutions to the aforementioned // Setter method
challenges and pave the way for a less void set emp_name(String name) {
stressful experience in the car-building this.name = name;
process. }
2
encompasses ephemeral state, which pertains
// Function definition to the current state visible to the user and is
void result() { managed by stateful widgets, and app state,
print(name); which persists throughout the application's
} runtime and stores user data and session
} details.
4.3Permissions
CHAPTER 5:
4
Figure 2: Sign Up Widget Build
Discussion
5
Figure 3: Discussion Widget Build
6
Build Page
7
Figure 5: Specific Build Widget Build
8
cause issues for some users. Therefore, it is
imperative to comprehend how to effectively
manage these problems, as users expect
solutions rather than excuses to ensure a
seamless experience on the application.
REFRENCES
10