repo
stringlengths
4
140
commit_id
stringlengths
7
7
rel_path
stringlengths
1
3.5k
language
stringclasses
37 values
url
stringlengths
37
3.56k
raw_url
stringlengths
54
3.58k
key
stringlengths
20
3.54k
ok
bool
1 class
status
int64
200
200
bytes
int64
48
425k
content
stringlengths
40
425k
worker_id
int64
0
7
karanst/sahyatri_driver_template
5fb2f52
lib/Model/GetSignInModel.dart
Dart
www.github.com/karanst/sahyatri_driver_template/tree/main/lib/Model/GetSignInModel.dart
https://raw.githubusercontent.com/karanst/sahyatri_driver_template/5fb2f52/lib/Model/GetSignInModel.dart
karanst/sahyatri_driver_template 5fb2f52 lib/Model/GetSignInModel.dart
true
200
1,526
import 'dart:convert'; /// status : true /// message : "User added successfully " /// data : 395 /// otp : 8219 GetSignInModel getSignInModelFromJson(String str) => GetSignInModel.fromJson(json.decode(str)); String getSignInModelToJson(GetSignInModel data) => json.encode(data.toJson()); class GetSignInModel { ...
1
DanialAhmed94/animal-qr
d8a6d5f
lib/views/addPet/components/bottom_widget.dart
Dart
www.github.com/DanialAhmed94/animal-qr/tree/main/lib/views/addPet/components/bottom_widget.dart
https://raw.githubusercontent.com/DanialAhmed94/animal-qr/d8a6d5f/lib/views/addPet/components/bottom_widget.dart
DanialAhmed94/animal-qr d8a6d5f lib/views/addPet/components/bottom_widget.dart
true
200
10,223
import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:pet_project/api/postPet.dart'; import 'package:pet_project/constants/app_constants.dart'; import 'package:pet_project/modal/pet_modal.dart'; import 'package:shared_preferences/sh...
4
Saurav-KumarSingh/Campus_Connect
adc3821
lib/screens/home_screen.dart
Dart
www.github.com/Saurav-KumarSingh/Campus_Connect/tree/main/lib/screens/home_screen.dart
https://raw.githubusercontent.com/Saurav-KumarSingh/Campus_Connect/adc3821/lib/screens/home_screen.dart
Saurav-KumarSingh/Campus_Connect adc3821 lib/screens/home_screen.dart
true
200
11,290
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:collegelink/services/post_services.dart'; import 'package:collegelink/models/post.dart'; import 'login_screen.dart'; import 'post_screen.dart'; import 'packag...
6
Kilo-Loco/protos
ef09a02
flutter/amplify_todo_proto/lib/auth_repository.dart
Dart
www.github.com/Kilo-Loco/protos/tree/main/flutter/amplify_todo_proto/lib/auth_repository.dart
https://raw.githubusercontent.com/Kilo-Loco/protos/ef09a02/flutter/amplify_todo_proto/lib/auth_repository.dart
Kilo-Loco/protos ef09a02 flutter/amplify_todo_proto/lib/auth_repository.dart
true
200
1,091
import 'dart:async'; import 'package:amplify_flutter/amplify.dart'; import 'models/User.dart'; class AuthRepository { Future<String> fetchUserIdFromAttributes() async { final attributes = await Amplify.Auth.fetchUserAttributes(); final subAttribute = attributes.firstWhere((element) => element.userAtt...
7
rarredondo-ecen/SmartGroceryBasket-App
2d7b363
lib/main.dart
Dart
www.github.com/rarredondo-ecen/SmartGroceryBasket-App/tree/main/lib/main.dart
https://raw.githubusercontent.com/rarredondo-ecen/SmartGroceryBasket-App/2d7b363/lib/main.dart
rarredondo-ecen/SmartGroceryBasket-App 2d7b363 lib/main.dart
true
200
472
import 'package:flutter/material.dart'; import 'package:projects/Pages/Home.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return Ma...
2
MayankChowdhary/products_store_flutter
41de63b
lib/ui/screens/homescreen_screen/home_screen.dart
Dart
www.github.com/MayankChowdhary/products_store_flutter/tree/main/lib/ui/screens/homescreen_screen/home_screen.dart
https://raw.githubusercontent.com/MayankChowdhary/products_store_flutter/41de63b/lib/ui/screens/homescreen_screen/home_screen.dart
MayankChowdhary/products_store_flutter 41de63b lib/ui/screens/homescreen_screen/home_screen.dart
true
200
5,786
import 'package:android_lyrics_player/data/models/flunkey_model.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:shared_preferences/shared_preferences.dart'; import '../../../controller/cubit/internet_cubit.dart'; import '../../../utils/constants/strings....
0
stefanhk31/Flagle
31fdd63
lib/data/country_repository.dart
Dart
www.github.com/stefanhk31/Flagle/tree/main/lib/data/country_repository.dart
https://raw.githubusercontent.com/stefanhk31/Flagle/31fdd63/lib/data/country_repository.dart
stefanhk31/Flagle 31fdd63 lib/data/country_repository.dart
true
200
714
import 'dart:convert'; import 'package:flagle/data/models/country.dart'; import 'package:flutter/services.dart'; class CountryRepository { Future<List<Country>> getCountries() async { List<Country> countries = []; try { var json = await rootBundle.loadString('assets/data/countries.json'); var da...
5
HutechCJ/ProfioApp
fcab600
apps/profio-app/lib/pages/app/app.dart
Dart
www.github.com/HutechCJ/ProfioApp/tree/main/apps/profio-app/lib/pages/app/app.dart
https://raw.githubusercontent.com/HutechCJ/ProfioApp/fcab600/apps/profio-app/lib/pages/app/app.dart
HutechCJ/ProfioApp fcab600 apps/profio-app/lib/pages/app/app.dart
true
200
1,266
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:profio_staff_client/managers/provider_manager.dart'; import 'package:profio_staff_client/managers/router_manager.dart'; import 'package:provider/provider.dart'; class App extends StatefulWidget { const App({super.k...
1
AndrewYKJ/BMAgriCare_project
11c4548
lib/dio/api/setting/checknow_login.dart
Dart
www.github.com/AndrewYKJ/BMAgriCare_project/tree/main/lib/dio/api/setting/checknow_login.dart
https://raw.githubusercontent.com/AndrewYKJ/BMAgriCare_project/11c4548/lib/dio/api/setting/checknow_login.dart
AndrewYKJ/BMAgriCare_project 11c4548 lib/dio/api/setting/checknow_login.dart
true
200
569
import 'package:behn_meyer_flutter/dio/dio_repo.dart'; import 'package:behn_meyer_flutter/models/setting/checknow.dart'; import 'package:dio/dio.dart'; import 'package:flutter/material.dart'; class CheckNowLoginApi extends DioRepo { var bodyData; CheckNowLoginApi(BuildContext context, {bodyData}) { dioContext...
4
gu-tig333-ht24/gusnicklst
f3d8df1
lib/model.dart
Dart
www.github.com/gu-tig333-ht24/gusnicklst/tree/main/lib/model.dart
https://raw.githubusercontent.com/gu-tig333-ht24/gusnicklst/f3d8df1/lib/model.dart
gu-tig333-ht24/gusnicklst f3d8df1 lib/model.dart
true
200
347
class Todo { final String? id; String title; bool done; Todo(this.id, this.title, {this.done = false}); factory Todo.fromJson(Map<String, dynamic> json){ return Todo(json['id'], json['title'], done: json['done'] ?? false); } Map<String, dynamic> toJson() { return { "title": title, "...
6
Foxq87/defter
7f6fcf5
lib/core/commons/my_native_ad.dart
Dart
www.github.com/Foxq87/defter/tree/main/lib/core/commons/my_native_ad.dart
https://raw.githubusercontent.com/Foxq87/defter/7f6fcf5/lib/core/commons/my_native_ad.dart
Foxq87/defter 7f6fcf5 lib/core/commons/my_native_ad.dart
true
200
2,734
import 'dart:io'; import 'package:flutter/material.dart'; import 'package:google_mobile_ads/google_mobile_ads.dart'; class MyNativeAd extends StatefulWidget { const MyNativeAd({super.key}); @override State<MyNativeAd> createState() => _MyNativeAdState(); } class _MyNativeAdState extends State<MyNativeAd> { ...
7
Meetpatil03/Google_Ui_clone
57f0f9e
google_clon/lib/resposive/mobile_screen_layout.dart
Dart
www.github.com/Meetpatil03/Google_Ui_clone/tree/main/google_clon/lib/resposive/mobile_screen_layout.dart
https://raw.githubusercontent.com/Meetpatil03/Google_Ui_clone/57f0f9e/google_clon/lib/resposive/mobile_screen_layout.dart
Meetpatil03/Google_Ui_clone 57f0f9e google_clon/lib/resposive/mobile_screen_layout.dart
true
200
2,966
import 'package:flutter/material.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:google_clon/colors.dart'; import 'package:google_clon/widgets/display_search_google.dart'; import 'package:google_clon/widgets/languages_row.dart'; import 'package:google_clon/widgets/mobile/footer_mobile.dart'; cla...
2
josephmusila/JobSnapy
3ad5695
lib/screens/chatScreen.dart
Dart
www.github.com/josephmusila/JobSnapy/tree/main/lib/screens/chatScreen.dart
https://raw.githubusercontent.com/josephmusila/JobSnapy/3ad5695/lib/screens/chatScreen.dart
josephmusila/JobSnapy 3ad5695 lib/screens/chatScreen.dart
true
200
614
import 'package:flutter/material.dart'; import 'package:web_socket_channel/web_socket_channel.dart'; class MyHomePage extends StatefulWidget { const MyHomePage({ super.key, required this.title, }); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _My...
3
Muhib370621/Twiddle
cea1ce8
lib/landing_screen/welcome_page.dart
Dart
www.github.com/Muhib370621/Twiddle/tree/main/lib/landing_screen/welcome_page.dart
https://raw.githubusercontent.com/Muhib370621/Twiddle/cea1ce8/lib/landing_screen/welcome_page.dart
Muhib370621/Twiddle cea1ce8 lib/landing_screen/welcome_page.dart
true
200
2,813
import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:get/get.dart'; import 'package:state_agent/Screens/user_auth/CreateAccount/createAcount.dart'; import 'package:state_agent/constants/constants.dart'; impor...
0
walidQasem/MoviesAppFlutter
b3cee3e
welx/lib/class/Crud.dart
Dart
www.github.com/walidQasem/MoviesAppFlutter/tree/main/welx/lib/class/Crud.dart
https://raw.githubusercontent.com/walidQasem/MoviesAppFlutter/b3cee3e/welx/lib/class/Crud.dart
walidQasem/MoviesAppFlutter b3cee3e welx/lib/class/Crud.dart
true
200
653
import 'dart:convert'; import 'package:http/http.dart' as http; List movisee = []; class Crud { Future getMovisee(String query) async { String url = query; var respone = await http.get(Uri.parse(url), headers: { 'Accept': 'application/json', 'Authorization': 'Bearer eyJh...
1
radianade2/Creo_APB
f80eb3e
creo/lib/register.dart
Dart
www.github.com/radianade2/Creo_APB/tree/main/creo/lib/register.dart
https://raw.githubusercontent.com/radianade2/Creo_APB/f80eb3e/creo/lib/register.dart
radianade2/Creo_APB f80eb3e creo/lib/register.dart
true
200
10,162
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; import 'login.dart'; import 'package:firebase_auth/firebase_auth.dart'; class RegisterScreen extends StatefulWidget { const RegisterScreen({super.key}); @override RegisterScreenState createState() => RegisterScreenSta...
4
elkomy111094/Local-Events
7851f23
lib/models/category.dart
Dart
www.github.com/elkomy111094/Local-Events/tree/main/lib/models/category.dart
https://raw.githubusercontent.com/elkomy111094/Local-Events/7851f23/lib/models/category.dart
elkomy111094/Local-Events 7851f23 lib/models/category.dart
true
200
847
import 'package:flutter/material.dart'; class Category { final int categoryId; final String name; final IconData icon; Category({required this.categoryId, required this.name, required this.icon}); } //Create my Categories items final allCategories = Category(categoryId: 0, name: "All", icon: Icons.search); f...
6
MichelyTamessawa/carteira-pet
fb41377
lib/components/pet_tile.dart
Dart
www.github.com/MichelyTamessawa/carteira-pet/tree/main/lib/components/pet_tile.dart
https://raw.githubusercontent.com/MichelyTamessawa/carteira-pet/fb41377/lib/components/pet_tile.dart
MichelyTamessawa/carteira-pet fb41377 lib/components/pet_tile.dart
true
200
2,208
import 'package:carteira_pet/models/pet.dart'; import 'package:carteira_pet/provider/pets.dart'; import 'package:carteira_pet/routes/appRoutes.dart'; import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; class PetTile extends StatelessWidget { final Pet pet; const PetTile(this.pet); @...
2
drkh619/Tech4Good
c673df5
lib/family/grandfather.dart
Dart
www.github.com/drkh619/Tech4Good/tree/main/lib/family/grandfather.dart
https://raw.githubusercontent.com/drkh619/Tech4Good/c673df5/lib/family/grandfather.dart
drkh619/Tech4Good c673df5 lib/family/grandfather.dart
true
200
1,553
import 'package:flutter/material.dart'; import 'package:animated_text_kit/animated_text_kit.dart'; import 'package:video_player/video_player.dart'; import 'package:flick_video_player/flick_video_player.dart'; class grandfather extends StatefulWidget { const grandfather({Key? key}) : super(key: key); @override ...
3
luisdanieldlcg/savoir
7e43156
lib/features/search/view/reservation/widgets/table_reservation_time_chips.dart
Dart
www.github.com/luisdanieldlcg/savoir/tree/main/lib/features/search/view/reservation/widgets/table_reservation_time_chips.dart
https://raw.githubusercontent.com/luisdanieldlcg/savoir/7e43156/lib/features/search/view/reservation/widgets/table_reservation_time_chips.dart
luisdanieldlcg/savoir 7e43156 lib/features/search/view/reservation/widgets/table_reservation_time_chips.dart
true
200
5,034
import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:savoir/common/logger.dart'; import 'package:savoir/common/theme.dart'; import 'package:savoir/features/search/controller/restaurant_reservation_controller.dart'; class TableReservationTimeChips extends Cons...
5
neuland-ingolstadt/thi-olympics-scoreboard
5003161
lib/edit_scores/edit_scores_provider.dart
Dart
www.github.com/neuland-ingolstadt/thi-olympics-scoreboard/tree/main/lib/edit_scores/edit_scores_provider.dart
https://raw.githubusercontent.com/neuland-ingolstadt/thi-olympics-scoreboard/5003161/lib/edit_scores/edit_scores_provider.dart
neuland-ingolstadt/thi-olympics-scoreboard 5003161 lib/edit_scores/edit_scores_provider.dart
true
200
1,634
import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:scoreboard/edit_scores/edit_scores.dart'; import 'package:scoreboard/models/models.dart'; import 'package:scoreboard/services/firestore.dart'; class EditScoresProvider extends StatelessWidget { const EditScoresProvider({...
0
symelbak/flutter-apps
d05d773
meals_app/lib/screens/categories.dart
Dart
www.github.com/symelbak/flutter-apps/tree/main/meals_app/lib/screens/categories.dart
https://raw.githubusercontent.com/symelbak/flutter-apps/d05d773/meals_app/lib/screens/categories.dart
symelbak/flutter-apps d05d773 meals_app/lib/screens/categories.dart
true
200
1,579
import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:meals_app/data/dummy_data.dart'; import 'package:meals_app/widgets/category_grid_item.dart'; import 'package:meals_app/screens/meals.dart'; import 'package:meals_app/models/meal.dart'; import 'package:meals_app/models/cate...
1
tolobainasip/culinar-ai
8265576
lib/features/scanner/presentation/pages/scanner_page.dart
Dart
www.github.com/tolobainasip/culinar-ai/tree/main/lib/features/scanner/presentation/pages/scanner_page.dart
https://raw.githubusercontent.com/tolobainasip/culinar-ai/8265576/lib/features/scanner/presentation/pages/scanner_page.dart
tolobainasip/culinar-ai 8265576 lib/features/scanner/presentation/pages/scanner_page.dart
true
200
3,444
import 'package:flutter/material.dart'; import 'package:camera/camera.dart'; import 'package:provider/provider.dart'; import '../providers/scanner_provider.dart'; class ScannerPage extends StatefulWidget { const ScannerPage({Key? key}) : super(key: key); @override State<ScannerPage> createState() => _ScannerPag...
4
Joezzy/ship_2_naija_test
92e59ce
lib/custom/shippingCard.dart
Dart
www.github.com/Joezzy/ship_2_naija_test/tree/main/lib/custom/shippingCard.dart
https://raw.githubusercontent.com/Joezzy/ship_2_naija_test/92e59ce/lib/custom/shippingCard.dart
Joezzy/ship_2_naija_test 92e59ce lib/custom/shippingCard.dart
true
200
5,791
import 'package:animate_do/animate_do.dart'; import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import 'package:ship_to_naija/core/apptheme.dart'; import 'package:ship_to_naija/core/sizeConfig.dart'; import 'package:ship_to_naija/custom/page_layout.dart'; import 'package:ship_to_naija/models/shipp...
6
DEVvetri/chatbot_app_project
cb68756
lib/dragable-ui/controller_drag.dart
Dart
www.github.com/DEVvetri/chatbot_app_project/tree/main/lib/dragable-ui/controller_drag.dart
https://raw.githubusercontent.com/DEVvetri/chatbot_app_project/cb68756/lib/dragable-ui/controller_drag.dart
DEVvetri/chatbot_app_project cb68756 lib/dragable-ui/controller_drag.dart
true
200
1,153
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:get/get.dart'; import 'task_template.dart'; class TaskController extends GetxController { RxList<TaskModel> tasks = <TaskModel>[].obs; final FirebaseFirestore _firestore = FirebaseFirestore.instance; CollectionReference get _tasksCollection =...
7
JunaidJameel/Qr-Code-Generator-Flutter
3aaa4d1
lib/view/qr_code_screen.dart
Dart
www.github.com/JunaidJameel/Qr-Code-Generator-Flutter/tree/main/lib/view/qr_code_screen.dart
https://raw.githubusercontent.com/JunaidJameel/Qr-Code-Generator-Flutter/3aaa4d1/lib/view/qr_code_screen.dart
JunaidJameel/Qr-Code-Generator-Flutter 3aaa4d1 lib/view/qr_code_screen.dart
true
200
3,551
import 'package:flutter/material.dart'; import 'package:qr_flutter/qr_flutter.dart'; class QrCodeScreen extends StatefulWidget { const QrCodeScreen({Key? key}) : super(key: key); @override State<QrCodeScreen> createState() => _QrCodeScreenState(); } class _QrCodeScreenState extends State<QrCodeScreen> { Stri...
2
PAUL-NYA/piano
77466dc
lib/main.dart
Dart
www.github.com/PAUL-NYA/piano/tree/main/lib/main.dart
https://raw.githubusercontent.com/PAUL-NYA/piano/77466dc/lib/main.dart
PAUL-NYA/piano 77466dc lib/main.dart
true
200
2,638
import 'package:flutter/material.dart'; import 'package:audioplayers/audioplayers.dart'; void main() { runApp(const MainApp()); } class MainApp extends StatelessWidget { const MainApp({super.key}); @override Widget build(BuildContext context) { final player = AudioPlayer(); return MaterialApp( ...
3
PrakharMaheshwari008/EqippedMobileApp
0725340
lib/brands/modal.dart
Dart
www.github.com/PrakharMaheshwari008/EqippedMobileApp/tree/main/lib/brands/modal.dart
https://raw.githubusercontent.com/PrakharMaheshwari008/EqippedMobileApp/0725340/lib/brands/modal.dart
PrakharMaheshwari008/EqippedMobileApp 0725340 lib/brands/modal.dart
true
200
624
import 'package:flutter/foundation.dart'; class ImageDetail { late bool isLoaded = false; late int cumulativeBytesLoaded = 0; late int expectedTotalBytes = 1; } class ImageValueNotifier extends ValueNotifier<ImageDetail> { late ImageDetail _imageDetail; ImageValueNotifier(imageDetail) : super(imageDetail) ...
5
asmaemou/e-commerce-FLUTTER
790d036
flutter_application_1/lib/model/product.dart
Dart
www.github.com/asmaemou/e-commerce-FLUTTER/tree/main/flutter_application_1/lib/model/product.dart
https://raw.githubusercontent.com/asmaemou/e-commerce-FLUTTER/790d036/flutter_application_1/lib/model/product.dart
asmaemou/e-commerce-FLUTTER 790d036 flutter_application_1/lib/model/product.dart
true
200
1,691
import 'dart:convert'; // import 'tag.dart'; List<Product> popularProductListFromJson(String val) => List<Product>.from(json.decode(val)['data'] .map((product) => Product.popularProductFromJson(product)) ); List<Product> productListFromJson(String val) => List<Product>.from(json.decode(val)['data...
4
Qsuma/a_pw_t
58d2b41
lib/screens/login_screen.dart
Dart
www.github.com/Qsuma/a_pw_t/tree/main/lib/screens/login_screen.dart
https://raw.githubusercontent.com/Qsuma/a_pw_t/58d2b41/lib/screens/login_screen.dart
Qsuma/a_pw_t 58d2b41 lib/screens/login_screen.dart
true
200
13,858
import 'package:app_tesis_yaliana/providers/bloc/loguinBloc/provider.dart'; import 'package:app_tesis_yaliana/screens/AdminView/admin_home_screen.dart'; import 'package:app_tesis_yaliana/screens/ProfesorView/comision_view.dart'; import 'package:app_tesis_yaliana/screens/ProfesorView/profesor_home_screen.dart'; import '...
6
xaatw0/flutter_salon_packages
af97967
ollama_talk_common/lib/src/entities/send_chat_message_entity.dart
Dart
www.github.com/xaatw0/flutter_salon_packages/tree/main/ollama_talk_common/lib/src/entities/send_chat_message_entity.dart
https://raw.githubusercontent.com/xaatw0/flutter_salon_packages/af97967/ollama_talk_common/lib/src/entities/send_chat_message_entity.dart
xaatw0/flutter_salon_packages af97967 ollama_talk_common/lib/src/entities/send_chat_message_entity.dart
true
200
451
class SendChatMessageEntity { final String prompt; final int chatId; const SendChatMessageEntity({ required this.prompt, required this.chatId, }); factory SendChatMessageEntity.fromJson(Map<String, dynamic> json) { return SendChatMessageEntity( prompt: json['prompt'], chatId: json['c...
7
jsaintz/todo-list-provider
f48461e
lib/app/core/ui/theme_extensions.dart
Dart
www.github.com/jsaintz/todo-list-provider/tree/main/lib/app/core/ui/theme_extensions.dart
https://raw.githubusercontent.com/jsaintz/todo-list-provider/f48461e/lib/app/core/ui/theme_extensions.dart
jsaintz/todo-list-provider f48461e lib/app/core/ui/theme_extensions.dart
true
200
532
import 'package:flutter/material.dart'; extension ThemeExtension on BuildContext { Color get primaryColor => Theme.of(this).primaryColor; Color get primaryColorLight => Theme.of(this).primaryColorLight; // ignore: deprecated_member_use Color get buttonColor => Theme.of(this).buttonColor; TextTheme get textTh...
2
zakiabuqaoud/to_do_list
19c6e61
lib/main.dart
Dart
www.github.com/zakiabuqaoud/to_do_list/tree/main/lib/main.dart
https://raw.githubusercontent.com/zakiabuqaoud/to_do_list/19c6e61/lib/main.dart
zakiabuqaoud/to_do_list 19c6e61 lib/main.dart
true
200
696
//import from flutter import 'package:flutter/material.dart'; //import from External Libraries import 'package:provider/provider.dart'; //import my files import './my_providers/task_provider.dart'; import 'package:todo_zaki/screens/to_do_home_page.dart'; void main() { runApp(ChangeNotifierProvider<TaskProvider>(...
3
preritagrawal06/Flutter-Auth
5f5f552
lib/pages/authPage.dart
Dart
www.github.com/preritagrawal06/Flutter-Auth/tree/main/lib/pages/authPage.dart
https://raw.githubusercontent.com/preritagrawal06/Flutter-Auth/5f5f552/lib/pages/authPage.dart
preritagrawal06/Flutter-Auth 5f5f552 lib/pages/authPage.dart
true
200
576
import 'package:auth/widgets/signin.dart'; import 'package:auth/widgets/signup.dart'; import 'package:flutter/material.dart'; class AuthPage extends StatefulWidget { const AuthPage({Key? key}) : super(key: key); @override State<AuthPage> createState() => _AuthPageState(); } class _AuthPageState extends State<A...
0
2510699771/superb_cuisine
1ba750d
lib/prc/底部tabbar+头部tabs案例1.dart
Dart
www.github.com/2510699771/superb_cuisine/tree/main/lib/prc/底部tabbar+头部tabs案例1.dart
https://raw.githubusercontent.com/2510699771/superb_cuisine/1ba750d/lib/prc/%E5%BA%95%E9%83%A8tabbar%2B%E5%A4%B4%E9%83%A8tabs%E6%A1%88%E4%BE%8B1.dart
2510699771/superb_cuisine 1ba750d lib/prc/底部tabbar+头部tabs案例1.dart
true
200
4,101
import 'package:flutter/material.dart'; import './count1.dart'; import './count2.dart'; import './count3.dart'; import './count4.dart'; main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( t...
5
kite0311/timer
4c0551b
lib/next_page.dart
Dart
www.github.com/kite0311/timer/tree/main/lib/next_page.dart
https://raw.githubusercontent.com/kite0311/timer/4c0551b/lib/next_page.dart
kite0311/timer 4c0551b lib/next_page.dart
true
200
401
import 'package:flutter/material.dart'; class NextPage extends StatelessWidget { const NextPage({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(), body: Center( child: Text( '1分達成おめでとう', style: TextStyle(fontWeight: FontWei...
1
barkobi/thaiapp
7087d09
lib/screens/register_page.dart
Dart
www.github.com/barkobi/thaiapp/tree/main/lib/screens/register_page.dart
https://raw.githubusercontent.com/barkobi/thaiapp/7087d09/lib/screens/register_page.dart
barkobi/thaiapp 7087d09 lib/screens/register_page.dart
true
200
8,325
import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:thaiapp/services/auth_service.dart'; import 'package:thaiapp/widgets/my_text_field.dart'; import 'package:http/http.dart' as http; import 'dart:convert'; import 'package:thaiapp/widgets/signInButton.dart'; import ...
4
hoangdathp99/flutter_test_projecty
a30d6f8
lib/ui/searchPage/search_screen.dart
Dart
www.github.com/hoangdathp99/flutter_test_projecty/tree/main/lib/ui/searchPage/search_screen.dart
https://raw.githubusercontent.com/hoangdathp99/flutter_test_projecty/a30d6f8/lib/ui/searchPage/search_screen.dart
hoangdathp99/flutter_test_projecty a30d6f8 lib/ui/searchPage/search_screen.dart
true
200
4,131
import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter_application_1/model/app_state_model.dart'; import 'package:flutter_application_1/model/product.dart'; import 'package:flutter_application_1/services/http_service.dart'; import 'package:flutter_application_1/widgets/productCard/product...
6
giovannilima262/task_mobile_flutter
509ab9b
lib/main.dart
Dart
www.github.com/giovannilima262/task_mobile_flutter/tree/main/lib/main.dart
https://raw.githubusercontent.com/giovannilima262/task_mobile_flutter/509ab9b/lib/main.dart
giovannilima262/task_mobile_flutter 509ab9b lib/main.dart
true
200
939
import 'package:flutter/material.dart'; import 'package:flutter_modular/flutter_modular.dart'; import 'package:task_mobile_giovanni/core/start/app_module.dart'; import 'package:task_mobile_giovanni/features/login/login_page.dart'; final AppModule appModule = AppModule(); void main() { runApp( ModularApp( m...
2
SubhasreeCodes/flutter_small_milk_shop
970f275
lib/screens/ProductScreen.dart
Dart
www.github.com/SubhasreeCodes/flutter_small_milk_shop/tree/main/lib/screens/ProductScreen.dart
https://raw.githubusercontent.com/SubhasreeCodes/flutter_small_milk_shop/970f275/lib/screens/ProductScreen.dart
SubhasreeCodes/flutter_small_milk_shop 970f275 lib/screens/ProductScreen.dart
true
200
2,806
import 'package:flutter/material.dart'; import 'package:flutter_small_milk_shop/models/Variant.dart'; import 'dart:convert'; import 'package:http/http.dart' as http; import '../models/Product.dart'; import '../utils/Constants.dart'; class ProductScreen extends StatefulWidget { final String title; const Product...
0
Zee-Palm-LLC/chattie-social-app
bb669ad
lib/app/modules/views/friends/components.dart/custom_friends_button.dart
Dart
www.github.com/Zee-Palm-LLC/chattie-social-app/tree/main/lib/app/modules/views/friends/components.dart/custom_friends_button.dart
https://raw.githubusercontent.com/Zee-Palm-LLC/chattie-social-app/bb669ad/lib/app/modules/views/friends/components.dart/custom_friends_button.dart
Zee-Palm-LLC/chattie-social-app bb669ad lib/app/modules/views/friends/components.dart/custom_friends_button.dart
true
200
967
import 'package:chatie/app/data/constants/constants.dart'; import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; class CustomFriendsButton extends StatelessWidget { final VoidCallback onTap; final String text; final double? radius; final Color? color; const Cust...
3
Myrat204209/Meno-shop
8f8432a
lib/notification/view/notification_page.dart
Dart
www.github.com/Myrat204209/Meno-shop/tree/main/lib/notification/view/notification_page.dart
https://raw.githubusercontent.com/Myrat204209/Meno-shop/8f8432a/lib/notification/view/notification_page.dart
Myrat204209/Meno-shop 8f8432a lib/notification/view/notification_page.dart
true
200
1,189
import 'package:app_ui/app_ui.dart'; import 'package:flutter/material.dart'; import 'package:meno_shop/l10n/l10n.dart'; class NotificationsPage extends StatelessWidget { const NotificationsPage({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text(con...
5
agamnsy/PPB_Muhammad_Agam_Nasywaan_2211104085_SE-06-1
7080992
13_Networking/GUIDED/my_homepage.dart
Dart
www.github.com/agamnsy/PPB_Muhammad_Agam_Nasywaan_2211104085_SE-06-1/tree/main/13_Networking/GUIDED/my_homepage.dart
https://raw.githubusercontent.com/agamnsy/PPB_Muhammad_Agam_Nasywaan_2211104085_SE-06-1/7080992/13_Networking/GUIDED/my_homepage.dart
agamnsy/PPB_Muhammad_Agam_Nasywaan_2211104085_SE-06-1 7080992 13_Networking/GUIDED/my_homepage.dart
true
200
2,193
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'count_controller.dart'; class MyHomePage extends StatelessWidget { MyHomePage({super.key}); // final String title; final CountController controller = Get.put(CountController()); @override Widget build(BuildContext context) { ...
1
komilov02/contact_app
7962d27
lib/utils/extensions/project_extensions.dart
Dart
www.github.com/komilov02/contact_app/tree/main/lib/utils/extensions/project_extensions.dart
https://raw.githubusercontent.com/komilov02/contact_app/7962d27/lib/utils/extensions/project_extensions.dart
komilov02/contact_app 7962d27 lib/utils/extensions/project_extensions.dart
true
200
394
import 'package:flutter/cupertino.dart'; double height = 0.0; double width = 0.0; extension Size on int { double h() { return (this / 620) * height; } double w() { return (this / 360) * width; } SizedBox getH() { return SizedBox( height: (this / 620) * height, ); } SizedBox getW...
7
Peterkimliz/reggyPos
d6a1398
lib/controllers/authcontroller.dart
Dart
www.github.com/Peterkimliz/reggyPos/tree/main/lib/controllers/authcontroller.dart
https://raw.githubusercontent.com/Peterkimliz/reggyPos/d6a1398/lib/controllers/authcontroller.dart
Peterkimliz/reggyPos d6a1398 lib/controllers/authcontroller.dart
true
200
17,791
import 'dart:async'; import 'dart:io' show Platform; import 'package:country_code_picker/country_code_picker.dart'; import 'package:flutter/material.dart'; import 'package:flutter_secure_storage/flutter_secure_storage.dart'; import 'package:get/get.dart'; import 'package:in_app_review/in_app_review.dart'; import 'packa...
4
darararrik/your_event
0e7a0db
lib/features/event_screens/my_events/presentation/blocs/my_events/my_events_bloc.dart
Dart
www.github.com/darararrik/your_event/tree/main/lib/features/event_screens/my_events/presentation/blocs/my_events/my_events_bloc.dart
https://raw.githubusercontent.com/darararrik/your_event/0e7a0db/lib/features/event_screens/my_events/presentation/blocs/my_events/my_events_bloc.dart
darararrik/your_event 0e7a0db lib/features/event_screens/my_events/presentation/blocs/my_events/my_events_bloc.dart
true
200
1,385
import 'dart:async'; import 'package:bloc/bloc.dart'; import 'package:equatable/equatable.dart'; import 'package:yourevent/core/data/repositories/event/event_repository.dart'; import 'package:yourevent/core/data/repositories/models/event/event_dto.dart'; import 'package:yourevent/core/data/repositories/user/user_reposi...
6
nnoromiv/familyAltar
68ddeb4
lib/screens/hymns.dart
Dart
www.github.com/nnoromiv/familyAltar/tree/main/lib/screens/hymns.dart
https://raw.githubusercontent.com/nnoromiv/familyAltar/68ddeb4/lib/screens/hymns.dart
nnoromiv/familyAltar 68ddeb4 lib/screens/hymns.dart
true
200
393
import 'package:flutter/material.dart'; class Hymns extends StatefulWidget { const Hymns({ super.key }); @override State<Hymns> createState() => _HymnsState(); } class _HymnsState extends State<Hymns> { @override Widget build(BuildContext context) { return const Center( child: Text('Hymns', style...
2
MariamMowafy/Task-Manager-CRUD
9b5dda2
flutter project/lib/screens/add_task.dart
Dart
www.github.com/MariamMowafy/Task-Manager-CRUD/tree/main/flutter project/lib/screens/add_task.dart
https://raw.githubusercontent.com/MariamMowafy/Task-Manager-CRUD/9b5dda2/flutter%20project/lib/screens/add_task.dart
MariamMowafy/Task-Manager-CRUD 9b5dda2 flutter project/lib/screens/add_task.dart
true
200
5,206
import 'package:flutter/src/foundation/key.dart'; import 'package:flutter/src/widgets/container.dart'; import 'package:flutter/src/widgets/framework.dart'; import 'package:flutter/material.dart'; import 'package:flutter/src/foundation/key.dart'; import 'package:flutter/src/widgets/container.dart'; import 'package:flutt...
3
Crash285github/youtube_playlists_plus
d4fa342
lib/config.dart
Dart
www.github.com/Crash285github/youtube_playlists_plus/tree/main/lib/config.dart
https://raw.githubusercontent.com/Crash285github/youtube_playlists_plus/d4fa342/lib/config.dart
Crash285github/youtube_playlists_plus d4fa342 lib/config.dart
true
200
1,226
import 'package:flutter/material.dart'; /// The Application's configs, contains variables that should be accessed /// everywhere in the application class AppConfig { /// The application's version static late final String appVersion; /// The navigator key for the left side of the screen on Split Screen Mode st...
0
RjcArci/wenia
1d05877
weniatest/lib/features/crypto/presentation/search/search_screen.dart
Dart
www.github.com/RjcArci/wenia/tree/main/weniatest/lib/features/crypto/presentation/search/search_screen.dart
https://raw.githubusercontent.com/RjcArci/wenia/1d05877/weniatest/lib/features/crypto/presentation/search/search_screen.dart
RjcArci/wenia 1d05877 weniatest/lib/features/crypto/presentation/search/search_screen.dart
true
200
3,924
import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:weniatest/features/crypto/presentation/search/search_viewmodel.dart'; class SearchScreen extends StatefulWidget { @override _SearchScreenState createState() => _SearchScreenState(); } class _SearchScreenState extends ...
1
MRIDULrk/Flutter_Project-Product_List_App-Using_REST_API_and_CRUD_Operation
20c7553
lib/add_product_screen.dart
Dart
www.github.com/MRIDULrk/Flutter_Project-Product_List_App-Using_REST_API_and_CRUD_Operation/tree/main/lib/add_product_screen.dart
https://raw.githubusercontent.com/MRIDULrk/Flutter_Project-Product_List_App-Using_REST_API_and_CRUD_Operation/20c7553/lib/add_product_screen.dart
MRIDULrk/Flutter_Project-Product_List_App-Using_REST_API_and_CRUD_Operation 20c7553 lib/add_product_screen.dart
true
200
7,070
import 'dart:convert'; import 'package:flutter/material.dart'; import'package:http/http.dart'; class AddProductScreen extends StatefulWidget { const AddProductScreen({super.key}); @override State<AddProductScreen> createState() => _AddProductScreenState(); } class _AddProductScreenState extends State<AddProduc...
5
Gabanelli/fullstack-dev-test-app
1168f04
lib/screens/cities_list/cities_list_controller.dart
Dart
www.github.com/Gabanelli/fullstack-dev-test-app/tree/main/lib/screens/cities_list/cities_list_controller.dart
https://raw.githubusercontent.com/Gabanelli/fullstack-dev-test-app/1168f04/lib/screens/cities_list/cities_list_controller.dart
Gabanelli/fullstack-dev-test-app 1168f04 lib/screens/cities_list/cities_list_controller.dart
true
200
760
import 'package:fullstack_dev_test_app/utils/list_extension.dart'; import 'package:get/get.dart'; import '../../data/model/city_model.dart'; import '../../data/repository/cities_repository.dart'; class CitiesListController extends GetxController { final CitiesRepository _citiesRepository; CitiesListController(t...
4
MSine/shelfie
ba3b12f
lib/screens/chat_screen.dart
Dart
www.github.com/MSine/shelfie/tree/main/lib/screens/chat_screen.dart
https://raw.githubusercontent.com/MSine/shelfie/ba3b12f/lib/screens/chat_screen.dart
MSine/shelfie ba3b12f lib/screens/chat_screen.dart
true
200
3,506
import 'package:flutter/material.dart'; import 'package:flutter_chat_ui/flutter_chat_ui.dart'; import 'package:flutter_chat_types/flutter_chat_types.dart' as types; import 'package:shelfie_app/main.dart'; import '../models/user_model.dart'; import '../models/message_model.dart'; import 'dart:convert'; import 'package:h...
7
MustafaOzkaya1/TODOS-APP
f164f41
todoapp/lib/ui/views/anasayfa.dart
Dart
www.github.com/MustafaOzkaya1/TODOS-APP/tree/main/todoapp/lib/ui/views/anasayfa.dart
https://raw.githubusercontent.com/MustafaOzkaya1/TODOS-APP/f164f41/todoapp/lib/ui/views/anasayfa.dart
MustafaOzkaya1/TODOS-APP f164f41 todoapp/lib/ui/views/anasayfa.dart
true
200
4,167
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:todoapp/data/entity/yapilacaklar.dart'; import 'package:todoapp/ui/cubit/anasayfa_cubit.dart'; import 'package:todoapp/ui/views/detay_sayfa.dart'; import 'package:todoapp/ui/...
6
senioris/housework_client
541ee40
lib/presentation/app.dart
Dart
www.github.com/senioris/housework_client/tree/main/lib/presentation/app.dart
https://raw.githubusercontent.com/senioris/housework_client/541ee40/lib/presentation/app.dart
senioris/housework_client 541ee40 lib/presentation/app.dart
true
200
605
import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:houseworks/presentation/page/home_page.dart'; class MyApp extends HookConsumerWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext cont...
3
b-laztornex/mycare
d1da86a
lib/config/constant.dart
Dart
www.github.com/b-laztornex/mycare/tree/main/lib/config/constant.dart
https://raw.githubusercontent.com/b-laztornex/mycare/d1da86a/lib/config/constant.dart
b-laztornex/mycare d1da86a lib/config/constant.dart
true
200
4,617
import 'package:mycare_archive/model/entry_model.dart'; class AppConstants { List<String> categories = [ "SLEEP PATTERN", "NUTRITION", // pasta "HYDRATION", // vaso con leche "MEDICATION", "PERSONAL CARE", "SOCIAL ACTIVITIES", //arbol y sol "MOOD & BEHAVIOUR", "MOBILITY", "SKIN IN...
0
hsawadogo08/tailor_book
eee6050
lib/models/customer.model.dart
Dart
www.github.com/hsawadogo08/tailor_book/tree/main/lib/models/customer.model.dart
https://raw.githubusercontent.com/hsawadogo08/tailor_book/eee6050/lib/models/customer.model.dart
hsawadogo08/tailor_book eee6050 lib/models/customer.model.dart
true
200
1,223
import 'package:cloud_firestore/cloud_firestore.dart'; class Customer { String? id; String? code; String? firstName; String? lastName; String? phoneNumber; String? userUID; int? pointFidelite; DateTime? createdDate; Customer({ this.id = '', this.code = "", this.firstName = "", this.l...
5
KRISHA-SALIYA/invoice_generator_app
2295505
lib/views/screens/details_page/detail_page.dart
Dart
www.github.com/KRISHA-SALIYA/invoice_generator_app/tree/main/lib/views/screens/details_page/detail_page.dart
https://raw.githubusercontent.com/KRISHA-SALIYA/invoice_generator_app/2295505/lib/views/screens/details_page/detail_page.dart
KRISHA-SALIYA/invoice_generator_app 2295505 lib/views/screens/details_page/detail_page.dart
true
200
4,892
import 'package:d_mart_bill/utils/product_page.dart'; import 'package:flutter/material.dart'; import 'package:flutter_rating_bar/flutter_rating_bar.dart'; class DetailPage extends StatefulWidget { const DetailPage({super.key}); @override State<DetailPage> createState() => _DetailPageState(); } class _DetailPag...
2
IHAMZAAHMADKHAN/flutter_workspace
42c86d8
login_signup_with_firebase/lib/pages/add_blog.dart
Dart
www.github.com/IHAMZAAHMADKHAN/flutter_workspace/tree/main/login_signup_with_firebase/lib/pages/add_blog.dart
https://raw.githubusercontent.com/IHAMZAAHMADKHAN/flutter_workspace/42c86d8/login_signup_with_firebase/lib/pages/add_blog.dart
IHAMZAAHMADKHAN/flutter_workspace 42c86d8 login_signup_with_firebase/lib/pages/add_blog.dart
true
200
3,727
import 'package:firebase_auth/firebase_auth.dart'; import 'package:firebase_database/firebase_database.dart'; import 'package:flutter/material.dart'; class AddBlog extends StatefulWidget { AddBlog({super.key}); @override State<AddBlog> createState() => _AddBlogState(); } class _AddBlogState extends State<AddBl...
1
cucumber99/firebase_test
21dd4cf
lib/todo_detail.dart
Dart
www.github.com/cucumber99/firebase_test/tree/main/lib/todo_detail.dart
https://raw.githubusercontent.com/cucumber99/firebase_test/21dd4cf/lib/todo_detail.dart
cucumber99/firebase_test 21dd4cf lib/todo_detail.dart
true
200
353
import 'package:flutter/material.dart'; class TodoDetail extends StatefulWidget { const TodoDetail({super.key, required this.title}); final String title; @override State<TodoDetail> createState() => _TodoDetail(); } class _TodoDetail extends State<TodoDetail> { @override Widget build(BuildContext context...
4
Hudzaiflank/TodoList-Flutter-Example
0aaa356
lib/main.dart
Dart
www.github.com/Hudzaiflank/TodoList-Flutter-Example/tree/main/lib/main.dart
https://raw.githubusercontent.com/Hudzaiflank/TodoList-Flutter-Example/0aaa356/lib/main.dart
Hudzaiflank/TodoList-Flutter-Example 0aaa356 lib/main.dart
true
200
634
import 'package:flutter/material.dart'; import 'package:hive_flutter/hive_flutter.dart'; import 'package:provider/provider.dart'; import 'pages/home_page.dart'; import 'providers/task_provider.dart'; void main() async { WidgetsFlutterBinding.ensureInitialized(); await Hive.initFlutter(); await Hive.openBox('task...
7
mhasgit/MobileAppDev
df5a68a
navigation/lib/pages/about.dart
Dart
www.github.com/mhasgit/MobileAppDev/tree/main/navigation/lib/pages/about.dart
https://raw.githubusercontent.com/mhasgit/MobileAppDev/df5a68a/navigation/lib/pages/about.dart
mhasgit/MobileAppDev df5a68a navigation/lib/pages/about.dart
true
200
1,266
import 'package:flutter/material.dart'; import 'package:navigation/pages/setting.dart'; class AboutPage extends StatefulWidget { const AboutPage({super.key, required this.title}); final String title; @override State<AboutPage> createState() => _AboutPageState(); } class _AboutPageState extends State<AboutPag...
6
Mate2145/gourmet_guru
370442c
gourmet_guru/lib/features/core/models/analyedinstructionlist.dart
Dart
www.github.com/Mate2145/gourmet_guru/tree/main/gourmet_guru/lib/features/core/models/analyedinstructionlist.dart
https://raw.githubusercontent.com/Mate2145/gourmet_guru/370442c/gourmet_guru/lib/features/core/models/analyedinstructionlist.dart
Mate2145/gourmet_guru 370442c gourmet_guru/lib/features/core/models/analyedinstructionlist.dart
true
200
720
import 'analyzedInstructions.dart'; class AnalyzedInstructionsList { final List<AnalyzedInstructions> instructions; AnalyzedInstructionsList({required this.instructions}); factory AnalyzedInstructionsList.fromJson(List<dynamic> json) { List<AnalyzedInstructions> instructionsList = []; for (var i = 0; ...
0
dariopmaciel/beaultiful_login_and_slidable_drawer
4234cd3
lib/screens/onbording/components/course_card.dart
Dart
www.github.com/dariopmaciel/beaultiful_login_and_slidable_drawer/tree/main/lib/screens/onbording/components/course_card.dart
https://raw.githubusercontent.com/dariopmaciel/beaultiful_login_and_slidable_drawer/4234cd3/lib/screens/onbording/components/course_card.dart
dariopmaciel/beaultiful_login_and_slidable_drawer 4234cd3 lib/screens/onbording/components/course_card.dart
true
200
2,294
import 'package:beaultiful_login_and_slidable_drawer/home/home_screen.dart'; import 'package:beaultiful_login_and_slidable_drawer/models/course.dart'; import 'package:flutter/material.dart'; import 'package:flutter_svg/flutter_svg.dart'; class CourseCard extends StatelessWidget { const CourseCard({ Key? key, ...
3
SarahAbera/Programming
28f8298
love_and_care/love_and_care/lib/presentation/opportunity/UserOpportunities.dart
Dart
www.github.com/SarahAbera/Programming/tree/main/love_and_care/love_and_care/lib/presentation/opportunity/UserOpportunities.dart
https://raw.githubusercontent.com/SarahAbera/Programming/28f8298/love_and_care/love_and_care/lib/presentation/opportunity/UserOpportunities.dart
SarahAbera/Programming 28f8298 love_and_care/love_and_care/lib/presentation/opportunity/UserOpportunities.dart
true
200
5,954
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:go_router/go_router.dart'; import 'package:love_and_care/application/application.dart'; import 'package:love_and_care/domain/domain.dart'; import 'package:love_and_care/presentation/presentation.dart'; class UserE...
2
rishi-singh26/Flutter-Authenticator
dc68d1e
lib/shared/components/custom_activity_indicator.dart
Dart
www.github.com/rishi-singh26/Flutter-Authenticator/tree/main/lib/shared/components/custom_activity_indicator.dart
https://raw.githubusercontent.com/rishi-singh26/Flutter-Authenticator/dc68d1e/lib/shared/components/custom_activity_indicator.dart
rishi-singh26/Flutter-Authenticator dc68d1e lib/shared/components/custom_activity_indicator.dart
true
200
925
import 'package:flutter/cupertino.dart'; class CustomActivityIndicator extends StatelessWidget { final Widget? content; const CustomActivityIndicator({Key? key, this.content}) : super(key: key); @override Widget build(BuildContext context) { return Container( padding: const EdgeInsets.all(20.0), ...
5
amansharma-317/dovestep
2429618
lib/feautures/auth/presentation/providers/auth_provider.dart
Dart
www.github.com/amansharma-317/dovestep/tree/main/lib/feautures/auth/presentation/providers/auth_provider.dart
https://raw.githubusercontent.com/amansharma-317/dovestep/2429618/lib/feautures/auth/presentation/providers/auth_provider.dart
amansharma-317/dovestep 2429618 lib/feautures/auth/presentation/providers/auth_provider.dart
true
200
1,899
import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:startup/feautures/auth/data/data_sources/auth_data_source.dart'; import 'package:startup/feautures/auth/data/repository/auth_repository_impl.dart'; import '../../domain/repository/auth_repository...
1
efimfit/post_viewer-client-app-
9936ae0
lib/posts/state/post_cubit/post_cubit.dart
Dart
www.github.com/efimfit/post_viewer-client-app-/tree/main/lib/posts/state/post_cubit/post_cubit.dart
https://raw.githubusercontent.com/efimfit/post_viewer-client-app-/9936ae0/lib/posts/state/post_cubit/post_cubit.dart
efimfit/post_viewer-client-app- 9936ae0 lib/posts/state/post_cubit/post_cubit.dart
true
200
2,148
import 'dart:async'; import 'package:flutter/material.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:hydrated_bloc/hydrated_bloc.dart'; import 'package:it_product_client/auth/auth.dart'; import 'package:it_product_client/posts/posts.dart'; part 'post_cubit.freezed.dart'; part 'pos...
4
Lucasgfrr/BuscoVan-Atualizado
b82d747
lib/NovasRotas/telalogin.dart
Dart
www.github.com/Lucasgfrr/BuscoVan-Atualizado/tree/main/lib/NovasRotas/telalogin.dart
https://raw.githubusercontent.com/Lucasgfrr/BuscoVan-Atualizado/b82d747/lib/NovasRotas/telalogin.dart
Lucasgfrr/BuscoVan-Atualizado b82d747 lib/NovasRotas/telalogin.dart
true
200
4,605
// ignore_for_file: prefer_const_constructors import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:lottie/lottie.dart'; import '../main.dart'; class LoginWidget extends StatefulWidget { final VoidCallback on...
6
MamikonP/FlutterProject
0aca0b7
authentication/lib/network/network_service.dart
Dart
www.github.com/MamikonP/FlutterProject/tree/main/authentication/lib/network/network_service.dart
https://raw.githubusercontent.com/MamikonP/FlutterProject/0aca0b7/authentication/lib/network/network_service.dart
MamikonP/FlutterProject 0aca0b7 authentication/lib/network/network_service.dart
true
200
2,022
import 'package:get/get.dart'; import './base_exception.dart'; import './check_response.dart'; import './network_helper.dart'; import '../configuration/configuration_controller.dart'; import '../modules/user/user_controller.dart'; import 'exceptions.dart'; class NetworkService { final NetworkHelper _networkHelper = ...
7
jakir03222/fast_app
ea7bd25
lib/Pages/add_belunce.dart
Dart
www.github.com/jakir03222/fast_app/tree/main/lib/Pages/add_belunce.dart
https://raw.githubusercontent.com/jakir03222/fast_app/ea7bd25/lib/Pages/add_belunce.dart
jakir03222/fast_app ea7bd25 lib/Pages/add_belunce.dart
true
200
1,451
import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:go_router/go_router.dart'; import '../Widget/user_input.dart'; import '../path_manager/pathate_manager.dart'; class AddBlunceList extends StatelessWidget { const AddBlunceList({super.key}); @overrid...
0
hanwinster/mtp-flutter-main-jan
413a960
packages/features/learning/lib/src/course_reviews/review_form/ui/review_form_screen.dart
Dart
www.github.com/hanwinster/mtp-flutter-main-jan/tree/main/packages/features/learning/lib/src/course_reviews/review_form/ui/review_form_screen.dart
https://raw.githubusercontent.com/hanwinster/mtp-flutter-main-jan/413a960/packages/features/learning/lib/src/course_reviews/review_form/ui/review_form_screen.dart
hanwinster/mtp-flutter-main-jan 413a960 packages/features/learning/lib/src/course_reviews/review_form/ui/review_form_screen.dart
true
200
1,046
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:ui/ui.dart'; import '../../ui/components/components.dart'; import '../bloc/review_form_bloc.dart'; class ReviewFormScreen extends StatelessWidget { const ReviewFormScreen({ super.key, }); @override Wi...
2
Eddtn/Auth_Ui
a9670b4
lib/views/homeview.dart
Dart
www.github.com/Eddtn/Auth_Ui/tree/main/lib/views/homeview.dart
https://raw.githubusercontent.com/Eddtn/Auth_Ui/a9670b4/lib/views/homeview.dart
Eddtn/Auth_Ui a9670b4 lib/views/homeview.dart
true
200
299
import 'package:flutter/material.dart'; class HomeViewScreen extends StatelessWidget { const HomeViewScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const Scaffold( body: Center( child: Text('home screen'), ), ); } }
3
RealEskalate/Internship-2023
fd61993
Mobile/starter_project_matador/lib/features/article/presentation/widgets/publish_button.dart
Dart
www.github.com/RealEskalate/Internship-2023/tree/main/Mobile/starter_project_matador/lib/features/article/presentation/widgets/publish_button.dart
https://raw.githubusercontent.com/RealEskalate/Internship-2023/fd61993/Mobile/starter_project_matador/lib/features/article/presentation/widgets/publish_button.dart
RealEskalate/Internship-2023 fd61993 Mobile/starter_project_matador/lib/features/article/presentation/widgets/publish_button.dart
true
200
883
import 'package:flutter/material.dart'; class PublishButton extends StatelessWidget { const PublishButton({Key? key}) : super(key: key); @override Widget build(BuildContext context) { final Size screenSize = MediaQuery.of(context).size; final bool isPortrait = MediaQuery.of(context).orientation == Orien...
5
rn-byte/pr_store
7050885
pr_store/lib/common/widgets/products/product_cards/product_card_vertical.dart
Dart
www.github.com/rn-byte/pr_store/tree/main/pr_store/lib/common/widgets/products/product_cards/product_card_vertical.dart
https://raw.githubusercontent.com/rn-byte/pr_store/7050885/pr_store/lib/common/widgets/products/product_cards/product_card_vertical.dart
rn-byte/pr_store 7050885 pr_store/lib/common/widgets/products/product_cards/product_card_vertical.dart
true
200
5,074
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:pr_store/common/styles/shadows.dart'; import 'package:pr_store/common/widgets/custom_shapes/containers/rounded_container.dart'; import 'package:pr_store/common/widgets/images/pr_rounded_image.dart'; import 'package:pr_store/common/wi...
1
EngAhmad-Tayasna/alnawawiforty
47296f1
lib/widgets/get_widget.dart
Dart
www.github.com/EngAhmad-Tayasna/alnawawiforty/tree/main/lib/widgets/get_widget.dart
https://raw.githubusercontent.com/EngAhmad-Tayasna/alnawawiforty/47296f1/lib/widgets/get_widget.dart
EngAhmad-Tayasna/alnawawiforty 47296f1 lib/widgets/get_widget.dart
true
200
518
import 'package:alnawawiforty/screens/local_audio.dart'; import 'package:alnawawiforty/services/networking_page.dart'; import 'package:flutter/material.dart'; Widget getWidget(bool bol, dynamic widget, String text) { if (bol) { return NetWorkingPage( hadith: widget.hadith, data: text, );...
4
Prateek-webartvision/voice_chat
753daa9
lib/res/app_color.dart
Dart
www.github.com/Prateek-webartvision/voice_chat/tree/main/lib/res/app_color.dart
https://raw.githubusercontent.com/Prateek-webartvision/voice_chat/753daa9/lib/res/app_color.dart
Prateek-webartvision/voice_chat 753daa9 lib/res/app_color.dart
true
200
1,265
import 'package:flutter/material.dart'; class AppColor extends Color { //convert hax color to int color AppColor.hexColor({required String colorCode}) : super(int.parse("0xff${colorCode.split("#").last}")); static Color transparent = Colors.transparent; static Color white = Colors.white; static Color...
6
risfat/flutter-bloc-clean-architecture-boilerplate
50ea8b1
lib/data/datasources/repositories/user_repository_impl.dart
Dart
www.github.com/risfat/flutter-bloc-clean-architecture-boilerplate/tree/main/lib/data/datasources/repositories/user_repository_impl.dart
https://raw.githubusercontent.com/risfat/flutter-bloc-clean-architecture-boilerplate/50ea8b1/lib/data/datasources/repositories/user_repository_impl.dart
risfat/flutter-bloc-clean-architecture-boilerplate 50ea8b1 lib/data/datasources/repositories/user_repository_impl.dart
true
200
1,623
import 'package:dartz/dartz.dart'; import 'package:dio/dio.dart'; import '../../../core/error/exceptions.dart'; import '../../../core/error/failures.dart'; import '../../../domain/entities/user.dart'; import '../../../domain/repositories/user_repository.dart'; import '../local/user_local_data_source.dart'; import '../...
2
HanyHagar/Bookly
16a3b6f
lib/features/home/presentation/views/widgets/list_of_book_details.dart
Dart
www.github.com/HanyHagar/Bookly/tree/main/lib/features/home/presentation/views/widgets/list_of_book_details.dart
https://raw.githubusercontent.com/HanyHagar/Bookly/16a3b6f/lib/features/home/presentation/views/widgets/list_of_book_details.dart
HanyHagar/Bookly 16a3b6f lib/features/home/presentation/views/widgets/list_of_book_details.dart
true
200
2,219
import 'package:bookly_app/core/widgets/custom_circular_progress_indicator.dart'; import 'package:bookly_app/core/widgets/custom_error_widget.dart'; import 'package:bookly_app/core/widgets/navigator.dart'; import 'package:bookly_app/features/home/presentation/manager/newest_books_cubit/newest_book_cubit.dart'; import '...
3
DhaniAM/Flutter-ditonton
6f5c9b2
test/presentation/bloc/tv_series/top_rated_tv_series_bloc_test.dart
Dart
www.github.com/DhaniAM/Flutter-ditonton/tree/main/test/presentation/bloc/tv_series/top_rated_tv_series_bloc_test.dart
https://raw.githubusercontent.com/DhaniAM/Flutter-ditonton/6f5c9b2/test/presentation/bloc/tv_series/top_rated_tv_series_bloc_test.dart
DhaniAM/Flutter-ditonton 6f5c9b2 test/presentation/bloc/tv_series/top_rated_tv_series_bloc_test.dart
true
200
2,073
import 'package:bloc_test/bloc_test.dart'; import 'package:dartz/dartz.dart'; import 'package:ditonton/common/failure.dart'; import 'package:ditonton/domain/usecases/get_top_rated_tv_series.dart'; import 'package:ditonton/presentation/bloc/tv_series/top_rated_tv_series_bloc.dart'; import 'package:ditonton/presentation/...
0
GIGI-QUEEN/messenger
cf1cb3a
lib/pages/search_page/search_provider.dart
Dart
www.github.com/GIGI-QUEEN/messenger/tree/main/lib/pages/search_page/search_provider.dart
https://raw.githubusercontent.com/GIGI-QUEEN/messenger/cf1cb3a/lib/pages/search_page/search_provider.dart
GIGI-QUEEN/messenger cf1cb3a lib/pages/search_page/search_provider.dart
true
200
912
import 'package:flutter/material.dart'; import 'package:flutter_chat_types/flutter_chat_types.dart'; import 'package:secure_messenger/services/database/database_service.dart'; class SearchProvider extends ChangeNotifier { final DatabaseService _databaseService = DatabaseService(); TextEditingController textEditing...
5
HusseinHafez/Todo
505aeee
lib/components/task_builder.dart
Dart
www.github.com/HusseinHafez/Todo/tree/main/lib/components/task_builder.dart
https://raw.githubusercontent.com/HusseinHafez/Todo/505aeee/lib/components/task_builder.dart
HusseinHafez/Todo 505aeee lib/components/task_builder.dart
true
200
1,305
import 'package:flutter/material.dart'; import 'package:todo/components/conditional_builder.dart'; import 'package:todo/components/task_shape.dart'; import 'package:todo/size_config.dart'; class TaskBuilder extends StatelessWidget { final List tasks; const TaskBuilder({super.key,required this.tasks,}); @overrid...
1
NguyenCongTam1807/Yugioh-Card-Maker
38c91b1
lib/widgets/card_elements/monster_level.dart
Dart
www.github.com/NguyenCongTam1807/Yugioh-Card-Maker/tree/main/lib/widgets/card_elements/monster_level.dart
https://raw.githubusercontent.com/NguyenCongTam1807/Yugioh-Card-Maker/38c91b1/lib/widgets/card_elements/monster_level.dart
NguyenCongTam1807/Yugioh-Card-Maker 38c91b1 lib/widgets/card_elements/monster_level.dart
true
200
2,044
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:yugioh_card_maker/const/size_config.dart'; import 'package:yugioh_card_maker/providers/card_provider.dart'; import 'package:provider/provider.dart'; class MonsterLevel extends StatelessWidget { const MonsterLevel({Key? k...
4
Sami-Hegazy/Notes
0030666
lib/views/edit_notes/edit_note.dart
Dart
www.github.com/Sami-Hegazy/Notes/tree/main/lib/views/edit_notes/edit_note.dart
https://raw.githubusercontent.com/Sami-Hegazy/Notes/0030666/lib/views/edit_notes/edit_note.dart
Sami-Hegazy/Notes 0030666 lib/views/edit_notes/edit_note.dart
true
200
2,932
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:note_app/core/app_rounded_icon.dart'; import 'package:note_app/core/app_text_form_field.dart'; import 'package:note_app/core/constants.dart'; import 'pack...
7
mayor04/Flutter_Widget_Builder
04038cd
fb_components/lib/src/widget_groups/single_child_widgets/center/fb_center_input.dart
Dart
www.github.com/mayor04/Flutter_Widget_Builder/tree/main/fb_components/lib/src/widget_groups/single_child_widgets/center/fb_center_input.dart
https://raw.githubusercontent.com/mayor04/Flutter_Widget_Builder/04038cd/fb_components/lib/src/widget_groups/single_child_widgets/center/fb_center_input.dart
mayor04/Flutter_Widget_Builder 04038cd fb_components/lib/src/widget_groups/single_child_widgets/center/fb_center_input.dart
true
200
422
import 'package:fb_components/src/base/stateless_fb_input.dart'; import 'package:flutter/material.dart'; import 'fb_center_config.dart'; class FbCenterInput extends StatelessFbInput<FbCenterStyles> { const FbCenterInput({ super.key, required super.styles, required super.onStylesUpdated, required sup...
6
raiadkharal/eds_survey_flutter
86e9365
lib/data/db/entities/designation.dart
Dart
www.github.com/raiadkharal/eds_survey_flutter/tree/main/lib/data/db/entities/designation.dart
https://raw.githubusercontent.com/raiadkharal/eds_survey_flutter/86e9365/lib/data/db/entities/designation.dart
raiadkharal/eds_survey_flutter 86e9365 lib/data/db/entities/designation.dart
true
200
480
import 'package:json_annotation/json_annotation.dart'; part 'designation.g.dart'; @JsonSerializable() class Designation { @JsonKey(name: 'designationId') final int? designationId; @JsonKey(name: 'designationValue') final String? designationValue; Designation(this.designationId, this.designationValue); ...
2
thuthumg/flutter_the_library_app
9b7586e
lib/pages/about_ebook_detail_page.dart
Dart
www.github.com/thuthumg/flutter_the_library_app/tree/main/lib/pages/about_ebook_detail_page.dart
https://raw.githubusercontent.com/thuthumg/flutter_the_library_app/9b7586e/lib/pages/about_ebook_detail_page.dart
thuthumg/flutter_the_library_app 9b7586e lib/pages/about_ebook_detail_page.dart
true
200
1,340
import 'package:flutter/material.dart'; import 'package:flutter_the_library_app/resources/dimens.dart'; class AboutEbookDetailPage extends StatelessWidget{ final String bookDesc; final String bookTitle; AboutEbookDetailPage({ required this.bookDesc, required this.bookTitle }); @override Widget bui...
3
MohammadMod/drapp-flutter
842a59b
lib/views/doctor_widget.dart
Dart
www.github.com/MohammadMod/drapp-flutter/tree/main/lib/views/doctor_widget.dart
https://raw.githubusercontent.com/MohammadMod/drapp-flutter/842a59b/lib/views/doctor_widget.dart
MohammadMod/drapp-flutter 842a59b lib/views/doctor_widget.dart
true
200
6,661
import 'package:flutter/material.dart'; import 'package:flutter_slidable/flutter_slidable.dart'; import 'package:provider/provider.dart'; import 'package:tandrustito/core/alert/confirm_alert.dart'; import 'package:tandrustito/core/shared/imports.dart'; import 'package:tandrustito/features/doctors/presentation/controlle...
5
imprincy/flutter_app_ui_practice
8c11b02
lib/second_screen.dart
Dart
www.github.com/imprincy/flutter_app_ui_practice/tree/main/lib/second_screen.dart
https://raw.githubusercontent.com/imprincy/flutter_app_ui_practice/8c11b02/lib/second_screen.dart
imprincy/flutter_app_ui_practice 8c11b02 lib/second_screen.dart
true
200
700
import 'package:flutter/material.dart'; class SecondScreenArg{ String name; SecondScreenArg({required this.name}); } class SecondScreen extends StatelessWidget { const SecondScreen({super.key}); @override Widget build(BuildContext context) { var arg = ModalRoute.of(context)!.settings.arguments as ...
7
nuwakwisdom/test_app
6f157ae
lib/features/dashboard/presentation/notifier/dashboard_notifier.dart
Dart
www.github.com/nuwakwisdom/test_app/tree/main/lib/features/dashboard/presentation/notifier/dashboard_notifier.dart
https://raw.githubusercontent.com/nuwakwisdom/test_app/6f157ae/lib/features/dashboard/presentation/notifier/dashboard_notifier.dart
nuwakwisdom/test_app 6f157ae lib/features/dashboard/presentation/notifier/dashboard_notifier.dart
true
200
2,471
import 'package:flutter/widgets.dart'; import 'package:injectable/injectable.dart'; import 'package:test_app/core/usecase/usecase.dart'; import 'package:test_app/features/dashboard/domain/entities/random_image_entity.dart'; import 'package:test_app/features/dashboard/domain/usecases/image_list_by_breed_usecase.dart'; i...
0
kwayummari/empowered
808c121
lib/src/widgets/app_base_tab_screen.dart
Dart
www.github.com/kwayummari/empowered/tree/main/lib/src/widgets/app_base_tab_screen.dart
https://raw.githubusercontent.com/kwayummari/empowered/808c121/lib/src/widgets/app_base_tab_screen.dart
kwayummari/empowered 808c121 lib/src/widgets/app_base_tab_screen.dart
true
200
945
import 'package:empowered/src/utils/app_const.dart'; import 'package:flutter/material.dart'; class AppBaseTabScreen extends StatelessWidget { final Widget child; final Widget? floatingActionButton; const AppBaseTabScreen( {Key? key, required this.child, this.floatingActionButton}) : super(key: key);...
1
DanielDemo027/ExamenFinalFlutter
039bd20
lib/user/productos/addnote.dart
Dart
www.github.com/DanielDemo027/ExamenFinalFlutter/tree/main/lib/user/productos/addnote.dart
https://raw.githubusercontent.com/DanielDemo027/ExamenFinalFlutter/039bd20/lib/user/productos/addnote.dart
DanielDemo027/ExamenFinalFlutter 039bd20 lib/user/productos/addnote.dart
true
200
8,332
import 'dart:io'; import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:image_picker/image_picker.dart'; import 'package:firebase_storage/firebase_storage.dart'; import 'package:proyectofinal/user/productos/productos.dart'; class AddItem extends StatefulWidget ...
6
JosinaldoRocha/history-app
0c4539e
lib/app/presentation/home/views/pages/home/home_page.dart
Dart
www.github.com/JosinaldoRocha/history-app/tree/main/lib/app/presentation/home/views/pages/home/home_page.dart
https://raw.githubusercontent.com/JosinaldoRocha/history-app/0c4539e/lib/app/presentation/home/views/pages/home/home_page.dart
JosinaldoRocha/history-app 0c4539e lib/app/presentation/home/views/pages/home/home_page.dart
true
200
1,897
import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:my_history_app/app/presentation/authentication/data/models/user_model.dart'; import 'package:my_history_app/app/presentation/authentication/providers/authentication_providers.dart'; import 'package:my_histor...
3
loregunner/university_flutter
a92baf8
lib/main.dart
Dart
www.github.com/loregunner/university_flutter/tree/main/lib/main.dart
https://raw.githubusercontent.com/loregunner/university_flutter/a92baf8/lib/main.dart
loregunner/university_flutter a92baf8 lib/main.dart
true
200
685
import 'package:flutter/material.dart'; import 'package:tyba_prueba/DetailData.dart'; import 'package:tyba_prueba/MyhomePage.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( ...
4
ArkV1/live-location-sharing-app
fe3efa6
test/features/authentication/presentation/login_screen_test.dart
Dart
www.github.com/ArkV1/live-location-sharing-app/tree/main/test/features/authentication/presentation/login_screen_test.dart
https://raw.githubusercontent.com/ArkV1/live-location-sharing-app/fe3efa6/test/features/authentication/presentation/login_screen_test.dart
ArkV1/live-location-sharing-app fe3efa6 test/features/authentication/presentation/login_screen_test.dart
true
200
3,757
import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:mockito/mockito.dart'; import 'package:mockito/annotations.dart'; import 'package:local_adventures/features/authentication/bloc/auth_bloc.dart'; import 'package:local...
5
Tarekkk1/Islami
01149d9
lib/Taps/Setting.dart
Dart
www.github.com/Tarekkk1/Islami/tree/main/lib/Taps/Setting.dart
https://raw.githubusercontent.com/Tarekkk1/Islami/01149d9/lib/Taps/Setting.dart
Tarekkk1/Islami 01149d9 lib/Taps/Setting.dart
true
200
1,796
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'package:islami/ShowLanguage.dart'; import 'package:islami/providers/My-provider.dart'; import 'package:provider/provider.dart'; class SettingsTab extends StatelessWidge...
7
VARWA/todo
c3c7ee5
lib/models/task_model.dart
Dart
www.github.com/VARWA/todo/tree/main/lib/models/task_model.dart
https://raw.githubusercontent.com/VARWA/todo/c3c7ee5/lib/models/task_model.dart
VARWA/todo c3c7ee5 lib/models/task_model.dart
true
200
1,494
import 'package:freezed_annotation/freezed_annotation.dart'; part 'task_model.freezed.dart'; @freezed class Task with _$Task { const Task._(); const factory Task( {required String id, required String text, @Default('basic') String importance, DateTime? deadline, @Default(false) bool...
0
SahanMedonsa/Saviru_Admin
0128287
adminapp/lib/Transpotation/transportaion.dart
Dart
www.github.com/SahanMedonsa/Saviru_Admin/tree/main/adminapp/lib/Transpotation/transportaion.dart
https://raw.githubusercontent.com/SahanMedonsa/Saviru_Admin/0128287/adminapp/lib/Transpotation/transportaion.dart
SahanMedonsa/Saviru_Admin 0128287 adminapp/lib/Transpotation/transportaion.dart
true
200
339
import 'package:flutter/material.dart'; class Transpotation extends StatefulWidget { const Transpotation({super.key}); @override State<Transpotation> createState() => _TranspotationState(); } class _TranspotationState extends State<Transpotation> { @override Widget build(BuildContext context) { return ...
2
xeybarm/kyla_task
fdd7bb1
lib/pages/menu_page.dart
Dart
www.github.com/xeybarm/kyla_task/tree/main/lib/pages/menu_page.dart
https://raw.githubusercontent.com/xeybarm/kyla_task/fdd7bb1/lib/pages/menu_page.dart
xeybarm/kyla_task fdd7bb1 lib/pages/menu_page.dart
true
200
1,047
import 'package:flutter/material.dart'; import '../common/style/constants.dart'; import '../common/style/ui.dart'; class MenuPage extends StatelessWidget { final Function() onTap; final int itemCount; final double buttonSize; const MenuPage({ super.key, required this.onTap, required this.itemCount,...
1
diegouaq20/hadal_flutter
4942fa5
lib/pacientes/procedimientoServicios/domicilioRegistrado/pruebas_agendada.dart
Dart
www.github.com/diegouaq20/hadal_flutter/tree/main/lib/pacientes/procedimientoServicios/domicilioRegistrado/pruebas_agendada.dart
https://raw.githubusercontent.com/diegouaq20/hadal_flutter/4942fa5/lib/pacientes/procedimientoServicios/domicilioRegistrado/pruebas_agendada.dart
diegouaq20/hadal_flutter 4942fa5 lib/pacientes/procedimientoServicios/domicilioRegistrado/pruebas_agendada.dart
true
200
16,228
import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter_stripe/flutter_stripe.dart'; import 'package:flutter_svg/svg.dart'; import 'package:fluttertoast/fluttertoast.dart'; import 'package:get/get.dart'; im...
6