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
mdung/spa_management
40d4ca1
lib/screens/staff_performance_screen.dart
Dart
www.github.com/mdung/spa_management/tree/main/lib/screens/staff_performance_screen.dart
https://raw.githubusercontent.com/mdung/spa_management/40d4ca1/lib/screens/staff_performance_screen.dart
mdung/spa_management 40d4ca1 lib/screens/staff_performance_screen.dart
true
200
4,546
import 'package:flutter/material.dart'; import 'package:charts_flutter/flutter.dart' as charts; import '../models/staff_performance.dart'; import '../services/api_auth.dart'; import '../services/api_service.dart'; class StaffPerformanceScreen extends StatefulWidget { @override _StaffPerformanceScreenState createS...
4
mrnpro/Cake-Shop
f8ddafc
lib/Screens/HomeScreen/Components/search.dart
Dart
www.github.com/mrnpro/Cake-Shop/tree/main/lib/Screens/HomeScreen/Components/search.dart
https://raw.githubusercontent.com/mrnpro/Cake-Shop/f8ddafc/lib/Screens/HomeScreen/Components/search.dart
mrnpro/Cake-Shop f8ddafc lib/Screens/HomeScreen/Components/search.dart
true
200
1,042
import 'package:flutter/material.dart'; import '../../../core/constants/colors.dart'; class Search extends StatelessWidget { const Search({ super.key, required this.size, }); final Size size; @override Widget build(BuildContext context) { return Column( children: [ const SizedBox...
7
FranciscoJavierMartin/widgets-app
94f1dea
lib/presentation/screens/app_tutorial/app_tutorial_screen.dart
Dart
www.github.com/FranciscoJavierMartin/widgets-app/tree/main/lib/presentation/screens/app_tutorial/app_tutorial_screen.dart
https://raw.githubusercontent.com/FranciscoJavierMartin/widgets-app/94f1dea/lib/presentation/screens/app_tutorial/app_tutorial_screen.dart
FranciscoJavierMartin/widgets-app 94f1dea lib/presentation/screens/app_tutorial/app_tutorial_screen.dart
true
200
4,509
import 'package:animate_do/animate_do.dart'; import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; class SlideInfo { final String title; final String caption; final String imageUrl; SlideInfo(this.title, this.caption, this.imageUrl); } final slides = <SlideInfo>[ SlideInfo( ...
2
AungKhantMin7666/fluflix
0de9a94
lib/widgets/trending_slider.dart
Dart
www.github.com/AungKhantMin7666/fluflix/tree/main/lib/widgets/trending_slider.dart
https://raw.githubusercontent.com/AungKhantMin7666/fluflix/0de9a94/lib/widgets/trending_slider.dart
AungKhantMin7666/fluflix 0de9a94 lib/widgets/trending_slider.dart
true
200
1,312
import 'package:carousel_slider/carousel_slider.dart'; import 'package:flutflix/constants.dart'; import 'package:flutter/material.dart'; class TrendingSlider extends StatelessWidget { const TrendingSlider({super.key, required this.snapshot}); final AsyncSnapshot snapshot; @override Widget build(BuildContext ...
3
Parth824/FlutterApp_All-
d7f3e6d
myfirstgame/lib/pages/homepages.dart
Dart
www.github.com/Parth824/FlutterApp_All-/tree/main/myfirstgame/lib/pages/homepages.dart
https://raw.githubusercontent.com/Parth824/FlutterApp_All-/d7f3e6d/myfirstgame/lib/pages/homepages.dart
Parth824/FlutterApp_All- d7f3e6d myfirstgame/lib/pages/homepages.dart
true
200
957
import 'package:flutter/material.dart'; class HomePage extends StatefulWidget { const HomePage({super.key}); @override State<HomePage> createState() => _HomePageState(); } class _HomePageState extends State<HomePage> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar...
1
zaleshchikov/v-tell-vpn-code-2
f9afb5e
lib/ui/webview_screen.dart
Dart
www.github.com/zaleshchikov/v-tell-vpn-code-2/tree/main/lib/ui/webview_screen.dart
https://raw.githubusercontent.com/zaleshchikov/v-tell-vpn-code-2/f9afb5e/lib/ui/webview_screen.dart
zaleshchikov/v-tell-vpn-code-2 f9afb5e lib/ui/webview_screen.dart
true
200
2,174
import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher.dart'; import 'package:webview_flutter/webview_flutter.dart'; class WebViewScreen extends StatefulWidget { final String url; const WebViewScreen({Key? key, required this.url}) : super(key: key); @override State<WebViewScreen> c...
6
EzraAriwomoi/pizza-app
3b2b9d5
lib/components/macro.dart
Dart
www.github.com/EzraAriwomoi/pizza-app/tree/main/lib/components/macro.dart
https://raw.githubusercontent.com/EzraAriwomoi/pizza-app/3b2b9d5/lib/components/macro.dart
EzraAriwomoi/pizza-app 3b2b9d5 lib/components/macro.dart
true
200
1,306
import 'package:flutter/material.dart'; import 'package:font_awesome_flutter/font_awesome_flutter.dart'; class MyMacroWidget extends StatelessWidget { final String title; final int value; final IconData icon; const MyMacroWidget({ required this.title, required this.value, required this.icon, s...
5
r3zafa/flutter_elearning
1ccb13b
app9_bmi_calculator/lib/components/action_btn.dart
Dart
www.github.com/r3zafa/flutter_elearning/tree/main/app9_bmi_calculator/lib/components/action_btn.dart
https://raw.githubusercontent.com/r3zafa/flutter_elearning/1ccb13b/app9_bmi_calculator/lib/components/action_btn.dart
r3zafa/flutter_elearning 1ccb13b app9_bmi_calculator/lib/components/action_btn.dart
true
200
949
import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; import '../theme/custom_colors.dart'; class ActionBtn extends StatelessWidget { const ActionBtn({ Key? key, required this.actionTitle, required this.onPressed, }) : super(key: key); final VoidCallback onPressed...
7
camilo177/chatRepoOptativa
798f5bf
Desktop/stream_controller/lib/screens/chat_screen.dart
Dart
www.github.com/camilo177/chatRepoOptativa/tree/main/Desktop/stream_controller/lib/screens/chat_screen.dart
https://raw.githubusercontent.com/camilo177/chatRepoOptativa/798f5bf/Desktop/stream_controller/lib/screens/chat_screen.dart
camilo177/chatRepoOptativa 798f5bf Desktop/stream_controller/lib/screens/chat_screen.dart
true
200
2,194
import 'package:flutter/material.dart'; import '../services/chat_service.dart'; class ChatScreen extends StatefulWidget { const ChatScreen({Key? key}) : super(key: key); @override _ChatScreenState createState() => _ChatScreenState(); } class _ChatScreenState extends State<ChatScreen> { final ChatService _c...
4
eduardokuhn/fitnessapp_clean
29fdafd
lib/app/modules/content_view/pages/image_view_page.dart
Dart
www.github.com/eduardokuhn/fitnessapp_clean/tree/main/lib/app/modules/content_view/pages/image_view_page.dart
https://raw.githubusercontent.com/eduardokuhn/fitnessapp_clean/29fdafd/lib/app/modules/content_view/pages/image_view_page.dart
eduardokuhn/fitnessapp_clean 29fdafd lib/app/modules/content_view/pages/image_view_page.dart
true
200
1,141
import 'dart:typed_data'; import 'package:fitness_app/app/shared/stores/theme_store.dart'; import 'package:flutter/material.dart'; import 'package:get_it/get_it.dart'; class ImageViewPage extends StatelessWidget { final _themeColor = GetIt.I.get<ThemeStore>().themeColor(); final Uint8List bytes; ImageViewPage...
2
SS-Ltd/cReddit-CrossPlatform
dec708e
lib/features/moderator/add_approved.dart
Dart
www.github.com/SS-Ltd/cReddit-CrossPlatform/tree/main/lib/features/moderator/add_approved.dart
https://raw.githubusercontent.com/SS-Ltd/cReddit-CrossPlatform/dec708e/lib/features/moderator/add_approved.dart
SS-Ltd/cReddit-CrossPlatform dec708e lib/features/moderator/add_approved.dart
true
200
2,266
import 'package:flutter/material.dart'; class AddApproved extends StatefulWidget { const AddApproved({super.key}); @override State<AddApproved> createState() { return _AddApprovedState(); } } class _AddApprovedState extends State<AddApproved> { final _userNameController = TextEditingController(); boo...
0
life-guardian/Angencies
78a2a44
lib/widget/dialogs/logout_dialog.dart
Dart
www.github.com/life-guardian/Angencies/tree/main/lib/widget/dialogs/logout_dialog.dart
https://raw.githubusercontent.com/life-guardian/Angencies/78a2a44/lib/widget/dialogs/logout_dialog.dart
life-guardian/Angencies 78a2a44 lib/widget/dialogs/logout_dialog.dart
true
200
1,905
import 'package:agencies_app/widget/text/text_widget.dart'; import 'package:animate_do/animate_do.dart'; import 'package:flutter/material.dart'; Future logoutDialog( {required BuildContext context, required String titleText, required Function() onTap, Color actionButton1Color = Colors.b...
3
smcretions/User-app-and-web23
79e5573
lib/feature/home/web_home_screen.dart
Dart
www.github.com/smcretions/User-app-and-web23/tree/main/lib/feature/home/web_home_screen.dart
https://raw.githubusercontent.com/smcretions/User-app-and-web23/79e5573/lib/feature/home/web_home_screen.dart
smcretions/User-app-and-web23 79e5573 lib/feature/home/web_home_screen.dart
true
200
6,913
import 'package:demandium/feature/home/widget/explore_provider_card.dart'; import 'package:demandium/feature/home/widget/highlight_provider_widget.dart'; import 'package:get/get.dart'; import 'package:demandium/components/core_export.dart'; class WebHomeScreen extends StatelessWidget { final ScrollController? scrol...
1
Nadie1411/movie_app
2a8fcd4
lib/HomeScreen/HomeTab/cubit/details_cubit.dart
Dart
www.github.com/Nadie1411/movie_app/tree/main/lib/HomeScreen/HomeTab/cubit/details_cubit.dart
https://raw.githubusercontent.com/Nadie1411/movie_app/2a8fcd4/lib/HomeScreen/HomeTab/cubit/details_cubit.dart
Nadie1411/movie_app 2a8fcd4 lib/HomeScreen/HomeTab/cubit/details_cubit.dart
true
200
761
import 'package:bloc/bloc.dart'; import 'package:movie_app/HomeScreen/HomeTab/cubit/movies_states.dart'; import 'package:movie_app/data/api_manager.dart'; import '../../../data/model/Response/MovieDetailResponse.dart'; class MovieDetails extends Cubit<MoviesStates> { MovieDetails() : super(MoviesInitialState()); ...
6
A-L-M/app_cdi
696d94b
lib/pages/usuarios_page/widgets/header.dart
Dart
www.github.com/A-L-M/app_cdi/tree/main/lib/pages/usuarios_page/widgets/header.dart
https://raw.githubusercontent.com/A-L-M/app_cdi/696d94b/lib/pages/usuarios_page/widgets/header.dart
A-L-M/app_cdi 696d94b lib/pages/usuarios_page/widgets/header.dart
true
200
4,293
import 'package:app_cdi/helpers/globals.dart'; import 'package:app_cdi/pages/widgets/animated_hover_button.dart'; import 'package:app_cdi/provider/providers.dart'; import 'package:app_cdi/theme/theme.dart'; import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; import 'package:provider/provi...
7
SohailPro12/FitMe
abac18e
lib/views/coach/hub/notifications_screen.dart
Dart
www.github.com/SohailPro12/FitMe/tree/main/lib/views/coach/hub/notifications_screen.dart
https://raw.githubusercontent.com/SohailPro12/FitMe/abac18e/lib/views/coach/hub/notifications_screen.dart
SohailPro12/FitMe abac18e lib/views/coach/hub/notifications_screen.dart
true
200
3,225
// ignore_for_file: avoid_print import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import '../../../services/crud2/firestore.dart'; class NotificationScreen extends StatefulWidget { const NotificationScreen({Key? key}) : super(key: key); @override _NotificationScree...
0
Luis-Honorato/vempraquadra
d62dd44
lib/features/authentication/presentation/pages/first_login_page.dart
Dart
www.github.com/Luis-Honorato/vempraquadra/tree/main/lib/features/authentication/presentation/pages/first_login_page.dart
https://raw.githubusercontent.com/Luis-Honorato/vempraquadra/d62dd44/lib/features/authentication/presentation/pages/first_login_page.dart
Luis-Honorato/vempraquadra d62dd44 lib/features/authentication/presentation/pages/first_login_page.dart
true
200
2,493
import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; import 'package:vempraquadra/features/authentication/presentation/pages/register_page.dart'; class FirstLoginPage extends StatelessWidget { const FirstLoginPage({super.key}); static Page<void> page() => const MaterialPage<voi...
5
SOCORPKolathur/church_management_admin_demo
554ffb6
lib/models/asset_management_model.dart
Dart
www.github.com/SOCORPKolathur/church_management_admin_demo/tree/main/lib/models/asset_management_model.dart
https://raw.githubusercontent.com/SOCORPKolathur/church_management_admin_demo/554ffb6/lib/models/asset_management_model.dart
SOCORPKolathur/church_management_admin_demo 554ffb6 lib/models/asset_management_model.dart
true
200
1,478
class AssetManagementModel { String? id; int? timestamp; String? date; String? amcDate; String? insuranceDate; String? assets; String? verifier; String? approxValue; String? description; String? imgUrl; String? document; AssetManagementModel( {this.id, this.timestamp, this...
2
Rishab-Kumar09/Sattvika
39e73ec
lib/main.dart
Dart
www.github.com/Rishab-Kumar09/Sattvika/tree/main/lib/main.dart
https://raw.githubusercontent.com/Rishab-Kumar09/Sattvika/39e73ec/lib/main.dart
Rishab-Kumar09/Sattvika 39e73ec lib/main.dart
true
200
2,687
import 'package:flutter/material.dart'; import 'package:supabase_flutter/supabase_flutter.dart'; import 'dart:async'; import 'src/theme/app_theme.dart'; import 'src/features/auth/login_screen.dart'; import 'src/features/onboarding/onboarding_screen.dart'; import 'src/features/home/presentation/home_screen.dart'; import...
1
shubhamdubey89011/feature-login-page
bc3e1a5
lib/app/features/dashboard/controllers/login_controller.dart
Dart
www.github.com/shubhamdubey89011/feature-login-page/tree/main/lib/app/features/dashboard/controllers/login_controller.dart
https://raw.githubusercontent.com/shubhamdubey89011/feature-login-page/bc3e1a5/lib/app/features/dashboard/controllers/login_controller.dart
shubhamdubey89011/feature-login-page bc3e1a5 lib/app/features/dashboard/controllers/login_controller.dart
true
200
1,649
import 'package:flutter/material.dart'; import 'package:flutter_template/app/utils/mixins/app_mixins.dart'; import 'package:get/get.dart'; class LoginController extends GetxController with ValidatorMixin { final emailController = TextEditingController(); final passwordController = TextEditingController(); final...
6
hkj13875503078/news_app
81bd990
lib/pages/sign_in/sign_in.dart
Dart
www.github.com/hkj13875503078/news_app/tree/main/lib/pages/sign_in/sign_in.dart
https://raw.githubusercontent.com/hkj13875503078/news_app/81bd990/lib/pages/sign_in/sign_in.dart
hkj13875503078/news_app 81bd990 lib/pages/sign_in/sign_in.dart
true
200
8,648
// ignore_for_file: prefer_const_literals_to_create_immutables, prefer_const_constructors_in_immutables, library_private_types_in_public_api, prefer_const_constructors, avoid_print, use_build_context_synchronously, unused_local_variable import 'package:auto_route/auto_route.dart'; import 'package:flutter/material.dart...
3
momu-m/Asetronics
7c46847
lib/services/database_service.dart
Dart
www.github.com/momu-m/Asetronics/tree/main/lib/services/database_service.dart
https://raw.githubusercontent.com/momu-m/Asetronics/7c46847/lib/services/database_service.dart
momu-m/Asetronics 7c46847 lib/services/database_service.dart
true
200
19,586
// database_service.dart import 'package:flutter/foundation.dart' show kIsWeb; import 'package:sqflite/sqflite.dart'; import 'package:sqflite_common_ffi_web/sqflite_ffi_web.dart'; import 'package:universal_html/html.dart' as html; import 'dart:convert'; import 'mysql_service.dart'; /// Ein Service für alle Datenbanko...
4
arsarsars1/assess_anime
0b8cc56
lib/main.dart
Dart
www.github.com/arsarsars1/assess_anime/tree/main/lib/main.dart
https://raw.githubusercontent.com/arsarsars1/assess_anime/0b8cc56/lib/main.dart
arsarsars1/assess_anime 0b8cc56 lib/main.dart
true
200
947
import 'package:assess_anime/controller/app_controller.dart'; import 'package:assess_anime/core/colors/colors.dart'; import 'package:assess_anime/services/navigation_service.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'screen/main_page/main_page.dart'; void main() { WidgetsF...
0
rajatsaxena7/d_i_p_r_mobileview
7350fbf
lib/caseworker/caseworker_enter_passwor_popup/caseworker_enter_passwor_popup_widget.dart
Dart
www.github.com/rajatsaxena7/d_i_p_r_mobileview/tree/main/lib/caseworker/caseworker_enter_passwor_popup/caseworker_enter_passwor_popup_widget.dart
https://raw.githubusercontent.com/rajatsaxena7/d_i_p_r_mobileview/7350fbf/lib/caseworker/caseworker_enter_passwor_popup/caseworker_enter_passwor_popup_widget.dart
rajatsaxena7/d_i_p_r_mobileview 7350fbf lib/caseworker/caseworker_enter_passwor_popup/caseworker_enter_passwor_popup_widget.dart
true
200
7,944
import '/backend/backend.dart'; import '/components/loadingindicator_widget.dart'; import '/flutter_flow/flutter_flow_theme.dart'; import '/flutter_flow/flutter_flow_util.dart'; import '/flutter_flow/flutter_flow_widgets.dart'; import 'package:flutter/material.dart'; import 'caseworker_enter_passwor_popup_model.dart'; ...
7
Aman7970/Chatting_App
c6a609c
justchat/lib/view/ChatScreen.dart
Dart
www.github.com/Aman7970/Chatting_App/tree/main/justchat/lib/view/ChatScreen.dart
https://raw.githubusercontent.com/Aman7970/Chatting_App/c6a609c/justchat/lib/view/ChatScreen.dart
Aman7970/Chatting_App c6a609c justchat/lib/view/ChatScreen.dart
true
200
9,240
// import 'package:firebase_auth/firebase_auth.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; // import 'dart:convert'; // import 'dart:developer'; // import 'package:firebase_core/firebase_core.dart'; import 'package:flutter/material.dart'; import 'package:prac/view/messageCard.dart'; // import 'packag...
5
sayanths/movie_display_banglore_project
a7b5f07
lib/app/home_page/servie/api_service.dart
Dart
www.github.com/sayanths/movie_display_banglore_project/tree/main/lib/app/home_page/servie/api_service.dart
https://raw.githubusercontent.com/sayanths/movie_display_banglore_project/a7b5f07/lib/app/home_page/servie/api_service.dart
sayanths/movie_display_banglore_project a7b5f07 lib/app/home_page/servie/api_service.dart
true
200
727
import 'package:dio/dio.dart'; import 'package:movie_project_banglore/app/home_page/model/home_model.dart'; import 'package:movie_project_banglore/app/home_page/model/home_model_post.dart'; class GetApi { Future<List<Result>?> getmoviesDetailes(PostModel postData) async { try { final response = await Dio()...
2
asfarali7860/gofoodieapk
27a9c59
suppgofood/lib/table/sup_tables.dart
Dart
www.github.com/asfarali7860/gofoodieapk/tree/main/suppgofood/lib/table/sup_tables.dart
https://raw.githubusercontent.com/asfarali7860/gofoodieapk/27a9c59/suppgofood/lib/table/sup_tables.dart
asfarali7860/gofoodieapk 27a9c59 suppgofood/lib/table/sup_tables.dart
true
200
1,333
import 'package:flutter/material.dart'; import 'package:suppgofood/table/confirmed.dart'; import 'package:suppgofood/table/not_confirmed.dart'; import 'package:suppgofood/widgets/appbar_widget.dart'; class SuppliersTables extends StatelessWidget { const SuppliersTables({Key? key}) : super(key: key); @override W...
3
Chatmongcol/-Dip2-modern-program-week15-2566
b87876d
lib/widgets/row_page.dart
Dart
www.github.com/Chatmongcol/-Dip2-modern-program-week15-2566/tree/main/lib/widgets/row_page.dart
https://raw.githubusercontent.com/Chatmongcol/-Dip2-modern-program-week15-2566/b87876d/lib/widgets/row_page.dart
Chatmongcol/-Dip2-modern-program-week15-2566 b87876d lib/widgets/row_page.dart
true
200
1,851
import 'package:flutter/material.dart'; class RowPage extends StatelessWidget { const RowPage({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Colors.purple, title: const Text("Row widget"), ), body: const Center...
1
AbdulazizAlkhars/sulalh
048d9b1
lib/HomeScreen/Registered/NotificationList.dart
Dart
www.github.com/AbdulazizAlkhars/sulalh/tree/main/lib/HomeScreen/Registered/NotificationList.dart
https://raw.githubusercontent.com/AbdulazizAlkhars/sulalh/048d9b1/lib/HomeScreen/Registered/NotificationList.dart
AbdulazizAlkhars/sulalh 048d9b1 lib/HomeScreen/Registered/NotificationList.dart
true
200
5,131
import 'package:flutter/material.dart'; class NotificationList extends StatelessWidget { final List<Map<String, dynamic>> notifications = [ { 'imagePath': 'assets/Staff Images/Screenshot_20200303-215853__01.jpg.webp', 'title': 'New Update Available!', 'subtitle': 'Download From AppSto...
6
Indipa123/healthcare
3fea327
my_app/lib/Screens/reportdetail.dart
Dart
www.github.com/Indipa123/healthcare/tree/main/my_app/lib/Screens/reportdetail.dart
https://raw.githubusercontent.com/Indipa123/healthcare/3fea327/my_app/lib/Screens/reportdetail.dart
Indipa123/healthcare 3fea327 my_app/lib/Screens/reportdetail.dart
true
200
21,429
import 'dart:convert'; import 'dart:io'; import 'package:flutter/material.dart'; import 'package:image_picker/image_picker.dart'; import 'package:file_picker/file_picker.dart'; import 'package:http/http.dart' as http; import 'package:path_provider/path_provider.dart'; import 'package:open_file/open_file.dart'; import '...
4
haaweejee/Submission-Flutter-Expert-Dicoding
90b1be3
test/presentation/provider/series/series_list_notifier_test.dart
Dart
www.github.com/haaweejee/Submission-Flutter-Expert-Dicoding/tree/main/test/presentation/provider/series/series_list_notifier_test.dart
https://raw.githubusercontent.com/haaweejee/Submission-Flutter-Expert-Dicoding/90b1be3/test/presentation/provider/series/series_list_notifier_test.dart
haaweejee/Submission-Flutter-Expert-Dicoding 90b1be3 test/presentation/provider/series/series_list_notifier_test.dart
true
200
5,909
import 'package:dartz/dartz.dart'; import 'package:ditonton/domain/entities/series.dart'; import 'package:ditonton/common/failure.dart'; import 'package:ditonton/domain/usecases/tv/get_now_playing_series.dart'; import 'package:ditonton/domain/usecases/tv/get_popular_series.dart'; import 'package:ditonton/domain/usecase...
0
asrar/seven_miniutes
82551db
lib/splach_screen.dart
Dart
www.github.com/asrar/seven_miniutes/tree/main/lib/splach_screen.dart
https://raw.githubusercontent.com/asrar/seven_miniutes/82551db/lib/splach_screen.dart
asrar/seven_miniutes 82551db lib/splach_screen.dart
true
200
1,888
import 'dart:async'; import 'package:flutter/material.dart'; import 'package:seven_minutes/Memory.dart'; import 'package:shared_preferences/shared_preferences.dart'; import 'package:seven_minutes/login/Login.dart'; import 'register/Register.dart'; class SplashScreen extends StatefulWidget { @override _SplashScre...
5
ARMAN8910/movie-search-application
622cfac
lib/Sections/Movies.dart
Dart
www.github.com/ARMAN8910/movie-search-application/tree/main/lib/Sections/Movies.dart
https://raw.githubusercontent.com/ARMAN8910/movie-search-application/622cfac/lib/Sections/Movies.dart
ARMAN8910/movie-search-application 622cfac lib/Sections/Movies.dart
true
200
2,584
import 'package:flutter/material.dart'; import 'dart:convert'; import 'package:http/http.dart' as http; import 'package:moviesapp/ApiKey/apikey.dart'; import 'package:moviesapp/Repeated_fn/slide_operation.dart'; class Movie extends StatefulWidget { const Movie({Key? key}) : super(key: key); @override State<Mov...
7
Avathari/assistant
2201ba9
lib/conexiones/actividades/wordGenerate/DocApi.dart
Dart
www.github.com/Avathari/assistant/tree/main/lib/conexiones/actividades/wordGenerate/DocApi.dart
https://raw.githubusercontent.com/Avathari/assistant/2201ba9/lib/conexiones/actividades/wordGenerate/DocApi.dart
Avathari/assistant 2201ba9 lib/conexiones/actividades/wordGenerate/DocApi.dart
true
200
1,890
import 'dart:async'; import 'dart:io'; import 'dart:typed_data'; import 'package:assistant/conexiones/actividades/auxiliares.dart'; import 'package:assistant/conexiones/conexiones.dart'; import 'package:flutter/services.dart'; import 'package:open_file/open_file.dart'; import 'package:path_provider/path_provider.dart'...
2
SaiyedMustaq/sqflite_flutter_application
eac016a
lib/sqfLiteBottomSheet.dart
Dart
www.github.com/SaiyedMustaq/sqflite_flutter_application/tree/main/lib/sqfLiteBottomSheet.dart
https://raw.githubusercontent.com/SaiyedMustaq/sqflite_flutter_application/eac016a/lib/sqfLiteBottomSheet.dart
SaiyedMustaq/sqflite_flutter_application eac016a lib/sqfLiteBottomSheet.dart
true
200
5,581
import 'dart:io'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_sqflite_application/sqflitePage.dart'; import 'package:image_picker/image_picker.dart'; import 'SQLHelper.dart'; import 'Utility.dart'; class SqfLiteBottomSheet extends StatefulWidget { SqfLite...
1
Fatima2229/Toku
ffb4a20
lib/screens/colors_page.dart
Dart
www.github.com/Fatima2229/Toku/tree/main/lib/screens/colors_page.dart
https://raw.githubusercontent.com/Fatima2229/Toku/ffb4a20/lib/screens/colors_page.dart
Fatima2229/Toku ffb4a20 lib/screens/colors_page.dart
true
200
2,578
import 'package:flutter/material.dart'; import 'package:toku/components/item.dart'; import 'package:toku/models/list_item.dart'; class ColorPage extends StatelessWidget { const ColorPage({Key? key}) : super(key: key); final List<Number> numbers = const [ Number( image: 'assets/images/colors/color_black.p...
6
jjf7/movie-app-flutter
9febb4a
lib/infrastructure/repositories/movie_repository_impl.dart
Dart
www.github.com/jjf7/movie-app-flutter/tree/main/lib/infrastructure/repositories/movie_repository_impl.dart
https://raw.githubusercontent.com/jjf7/movie-app-flutter/9febb4a/lib/infrastructure/repositories/movie_repository_impl.dart
jjf7/movie-app-flutter 9febb4a lib/infrastructure/repositories/movie_repository_impl.dart
true
200
1,197
import 'package:movie_app/domain/datasources/movies_datasource.dart'; import 'package:movie_app/domain/entities/movies/movie.dart'; import 'package:movie_app/domain/entities/movies/video.dart'; import 'package:movie_app/domain/repositories/movie_repository.dart'; class MovieRepositoryImplementation extends MovieReposi...
5
hetshree999/CE081_SDP_Lab11
6e6baaa
lab11/lib/pages/home.dart
Dart
www.github.com/hetshree999/CE081_SDP_Lab11/tree/main/lab11/lib/pages/home.dart
https://raw.githubusercontent.com/hetshree999/CE081_SDP_Lab11/6e6baaa/lab11/lib/pages/home.dart
hetshree999/CE081_SDP_Lab11 6e6baaa lab11/lib/pages/home.dart
true
200
1,455
import 'package:flutter/material.dart'; class Home extends StatefulWidget { @override State<Home> createState() => _HomeState(); } class _HomeState extends State<Home> { Map<dynamic, dynamic> data = {}; @override Widget build(BuildContext context) { data = ModalRoute.of(context)?.settings.arguments as...
4
EngMohamedAbdelmoneim/Power-Factor-Correction
93431ea
lib/screens/baseresult.dart
Dart
www.github.com/EngMohamedAbdelmoneim/Power-Factor-Correction/tree/main/lib/screens/baseresult.dart
https://raw.githubusercontent.com/EngMohamedAbdelmoneim/Power-Factor-Correction/93431ea/lib/screens/baseresult.dart
EngMohamedAbdelmoneim/Power-Factor-Correction 93431ea lib/screens/baseresult.dart
true
200
12,318
import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import 'package:pfcalulator/data/create_excel_file/ecxel_sheet.dart'; import 'package:pfcalulator/data/create_excel_file/storage_methods.dart'; import 'package:pfcalulator/data/equations.dart'; import 'package:pfcalulator/screens/pf_before_a...
3
arracheille/PresenceMobile_CyberOlympus_Mobile
f4c1a3a
lib/controllers/register_controller.dart
Dart
www.github.com/arracheille/PresenceMobile_CyberOlympus_Mobile/tree/main/lib/controllers/register_controller.dart
https://raw.githubusercontent.com/arracheille/PresenceMobile_CyberOlympus_Mobile/f4c1a3a/lib/controllers/register_controller.dart
arracheille/PresenceMobile_CyberOlympus_Mobile f4c1a3a lib/controllers/register_controller.dart
true
200
1,971
import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:project_test/utils/api_endpoints.dart'; import 'package:shared_preferences/shared_preferences.dart'; import 'package:http/http.dart' as http; class RegisterController extends GetxController { TextEditingCon...
0
hryacosta/password
c47af3f
lib/presentation/components/input/input_field.dart
Dart
www.github.com/hryacosta/password/tree/main/lib/presentation/components/input/input_field.dart
https://raw.githubusercontent.com/hryacosta/password/c47af3f/lib/presentation/components/input/input_field.dart
hryacosta/password c47af3f lib/presentation/components/input/input_field.dart
true
200
4,450
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:password/presentation/theme/app_colors.dart'; class InputField extends StatelessWidget { const InputField({ required this.labelText, required this.onChange, this.keyboardType = TextInputType.text, this.obs...
7
RomanTechnologies/tic_tac_toe
f20c2ac
lib/ui/views/splash_screen_view.dart
Dart
www.github.com/RomanTechnologies/tic_tac_toe/tree/main/lib/ui/views/splash_screen_view.dart
https://raw.githubusercontent.com/RomanTechnologies/tic_tac_toe/f20c2ac/lib/ui/views/splash_screen_view.dart
RomanTechnologies/tic_tac_toe f20c2ac lib/ui/views/splash_screen_view.dart
true
200
516
import 'package:flutter/material.dart'; import '../themes/theme_data.dart'; import '../../viewmodels/game_viewmodel.dart'; class SplashScreenView extends StatelessWidget { SplashScreenView({Key? required this.viewModel}) : super(key: key); final GameViewModel?viewModel; @override Widget build(BuildContext co...
2
gbrissi/easy_clip_2_gif_converter
9d2cc01
lib/src/screens/home_screen/components/home_add_vid.dart
Dart
www.github.com/gbrissi/easy_clip_2_gif_converter/tree/main/lib/src/screens/home_screen/components/home_add_vid.dart
https://raw.githubusercontent.com/gbrissi/easy_clip_2_gif_converter/9d2cc01/lib/src/screens/home_screen/components/home_add_vid.dart
gbrissi/easy_clip_2_gif_converter 9d2cc01 lib/src/screens/home_screen/components/home_add_vid.dart
true
200
1,469
import 'dart:io'; import 'package:easy_clip_2_gif/src/controllers/video_panel_controller.dart'; import 'package:file_picker/file_picker.dart'; import 'package:flutter/material.dart'; import 'package:mime/mime.dart'; import 'package:provider/provider.dart'; import '../../../utils/show_snackbar.dart'; class HomeAddVid...
1
exdevutem/mi-utem
2e43707
lib/screens/onboarding/notifications_screen.dart
Dart
www.github.com/exdevutem/mi-utem/tree/main/lib/screens/onboarding/notifications_screen.dart
https://raw.githubusercontent.com/exdevutem/mi-utem/2e43707/lib/screens/onboarding/notifications_screen.dart
exdevutem/mi-utem 2e43707 lib/screens/onboarding/notifications_screen.dart
true
200
5,178
import 'package:flutter/material.dart'; import 'package:mi_utem/models/preferencia.dart'; import 'package:mi_utem/screens/main_screen.dart'; import 'package:mi_utem/services/notification_service.dart'; import 'package:mi_utem/themes/theme.dart'; import 'package:mi_utem/widgets/gradient_background.dart'; class Notifica...
6
Nykolayr/getoutthebox
ac1a7d1
lib/src/features/content/analyze_emotion/keep_changing.dart
Dart
www.github.com/Nykolayr/getoutthebox/tree/main/lib/src/features/content/analyze_emotion/keep_changing.dart
https://raw.githubusercontent.com/Nykolayr/getoutthebox/ac1a7d1/lib/src/features/content/analyze_emotion/keep_changing.dart
Nykolayr/getoutthebox ac1a7d1 lib/src/features/content/analyze_emotion/keep_changing.dart
true
200
3,349
import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_svg/svg.dart'; import 'package:getoutofthebox/core/common/styles.dart'; import 'package:getoutofthebox/core/utils/size_utils.dart'; import 'package:getoutofthebox/src/features/content/analyze_emo...
5
roma7481/rune_of_the_day
d9a8768
lib/app/services/ads/ad_service.dart
Dart
www.github.com/roma7481/rune_of_the_day/tree/main/lib/app/services/ads/ad_service.dart
https://raw.githubusercontent.com/roma7481/rune_of_the_day/d9a8768/lib/app/services/ads/ad_service.dart
roma7481/rune_of_the_day d9a8768 lib/app/services/ads/ad_service.dart
true
200
6,977
import 'dart:collection'; import 'dart:io'; import 'package:flutter/widgets.dart'; import 'package:google_mobile_ads/google_mobile_ads.dart'; import 'package:rune_of_the_day/app/presentation/common_widgets/error_dialog.dart'; import 'package:rune_of_the_day/app/services/premium/premium_controller.dart'; import 'ad_cou...
0
codejuni/Flutter-Bloc-Firestore-FirebaseAuth-Clothing-Store
c6b9b20
lib/src/ui/utilities/tiles/categorie_tile.dart
Dart
www.github.com/codejuni/Flutter-Bloc-Firestore-FirebaseAuth-Clothing-Store/tree/main/lib/src/ui/utilities/tiles/categorie_tile.dart
https://raw.githubusercontent.com/codejuni/Flutter-Bloc-Firestore-FirebaseAuth-Clothing-Store/c6b9b20/lib/src/ui/utilities/tiles/categorie_tile.dart
codejuni/Flutter-Bloc-Firestore-FirebaseAuth-Clothing-Store c6b9b20 lib/src/ui/utilities/tiles/categorie_tile.dart
true
200
1,133
import 'package:clothing_store_firestore_crud/src/domain/models/categorie_model.dart'; import 'package:clothing_store_firestore_crud/src/ui/screens/home/cubit/home_cubit.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; class CategorieTile extends StatelessWidget { const...
3
HanySameh/Bookly
529c33f
lib/features/home/presentation/view/widgets/custom_book_image.dart
Dart
www.github.com/HanySameh/Bookly/tree/main/lib/features/home/presentation/view/widgets/custom_book_image.dart
https://raw.githubusercontent.com/HanySameh/Bookly/529c33f/lib/features/home/presentation/view/widgets/custom_book_image.dart
HanySameh/Bookly 529c33f lib/features/home/presentation/view/widgets/custom_book_image.dart
true
200
669
import 'package:cached_network_image/cached_network_image.dart'; import 'package:flutter/material.dart'; class CustomBookImage extends StatelessWidget { const CustomBookImage({Key? key, required this.imageUrl}) : super(key: key); final String imageUrl; @override Widget build(BuildContext context) => ClipRRect...
7
PauDebi/Tareonix
edc3b55
lib/provider/project_cubit.dart
Dart
www.github.com/PauDebi/Tareonix/tree/main/lib/provider/project_cubit.dart
https://raw.githubusercontent.com/PauDebi/Tareonix/edc3b55/lib/provider/project_cubit.dart
PauDebi/Tareonix edc3b55 lib/provider/project_cubit.dart
true
200
8,347
import 'package:bloc/bloc.dart'; import 'package:equatable/equatable.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:http/http.dart' as http; import 'dart:convert'; import 'package:flutter_secure_storage/flutter_secure_storage.dart'; import 'package:Tareon...
4
MustafaAmin28/Basic_Chat_App
4b1db48
lib/components/custom_elevated_button.dart
Dart
www.github.com/MustafaAmin28/Basic_Chat_App/tree/main/lib/components/custom_elevated_button.dart
https://raw.githubusercontent.com/MustafaAmin28/Basic_Chat_App/4b1db48/lib/components/custom_elevated_button.dart
MustafaAmin28/Basic_Chat_App 4b1db48 lib/components/custom_elevated_button.dart
true
200
716
import 'package:flutter/material.dart'; class CustomElevatedButton extends StatelessWidget { final String buttonText; final double width, height; final Color? buttonColor; VoidCallback? onTap; CustomElevatedButton( {required this.buttonText, required this.height, required this.width, ...
2
Madhukaran/alert_system
ff978b2
lib/welcome_screen.dart
Dart
www.github.com/Madhukaran/alert_system/tree/main/lib/welcome_screen.dart
https://raw.githubusercontent.com/Madhukaran/alert_system/ff978b2/lib/welcome_screen.dart
Madhukaran/alert_system ff978b2 lib/welcome_screen.dart
true
200
3,648
import 'package:flutter/material.dart'; import 'package:lottie/lottie.dart'; import 'package:flutter/gestures.dart'; class WelcomeScreen extends StatelessWidget { const WelcomeScreen(); @override Widget build(BuildContext context) { final ButtonStyle style = ElevatedButton.styleFrom( padding: const ...
1
kondarapukartik/ThinktankAPP
e4a389b
thinktank/lib/prompts/Prompt_1.dart
Dart
www.github.com/kondarapukartik/ThinktankAPP/tree/main/thinktank/lib/prompts/Prompt_1.dart
https://raw.githubusercontent.com/kondarapukartik/ThinktankAPP/e4a389b/thinktank/lib/prompts/Prompt_1.dart
kondarapukartik/ThinktankAPP e4a389b thinktank/lib/prompts/Prompt_1.dart
true
200
1,818
// ignore: file_names import 'package:flutter/material.dart'; class PromptPage extends StatelessWidget { final String prompt; const PromptPage({super.key, required this.prompt}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text( "Ge...
6
TebogoMashika/flutter_claimsdeshboard_app
d2df0da
frontend/claims-deshboard/claims_deshboard/lib/menu/NavigationDrawer.dart
Dart
www.github.com/TebogoMashika/flutter_claimsdeshboard_app/tree/main/frontend/claims-deshboard/claims_deshboard/lib/menu/NavigationDrawer.dart
https://raw.githubusercontent.com/TebogoMashika/flutter_claimsdeshboard_app/d2df0da/frontend/claims-deshboard/claims_deshboard/lib/menu/NavigationDrawer.dart
TebogoMashika/flutter_claimsdeshboard_app d2df0da frontend/claims-deshboard/claims_deshboard/lib/menu/NavigationDrawer.dart
true
200
2,019
import 'package:flutter/material.dart'; import '../main.dart'; class NavigationDrawer extends StatelessWidget { const NavigationDrawer({Key? key}) : super(key: key); @override Widget build(BuildContext context) => Drawer( child: SingleChildScrollView( child: Column( crossAxisAlign...
5
raghav53/auria_flutter
90c1aa9
lib/apis/api_controller.dart
Dart
www.github.com/raghav53/auria_flutter/tree/main/lib/apis/api_controller.dart
https://raw.githubusercontent.com/raghav53/auria_flutter/90c1aa9/lib/apis/api_controller.dart
raghav53/auria_flutter 90c1aa9 lib/apis/api_controller.dart
true
200
3,594
import 'package:auria_ai/screens/SignUp/SignUpModel.dart'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; import 'package:shared_preferences/shared_preferences.dart'; import '../screens/Login/LoginScreen.dart'; import '../utils/all_keys.dart'; String key_splite = "_*_"; String baseUr...
7
dev-rahul-0/wallpaper_apk
d440486
lib/home.dart
Dart
www.github.com/dev-rahul-0/wallpaper_apk/tree/main/lib/home.dart
https://raw.githubusercontent.com/dev-rahul-0/wallpaper_apk/d440486/lib/home.dart
dev-rahul-0/wallpaper_apk d440486 lib/home.dart
true
200
3,797
import 'package:flutter/material.dart'; import 'package:wallpaper/apioperation.dart'; import 'package:wallpaper/category_model.dart'; import 'package:wallpaper/custumappbar.dart'; import 'package:wallpaper/photosmodel.dart'; import 'package:wallpaper/seacrvhbar.dart'; import 'catBlock.dart'; class HomeScreen extends ...
0
DeveloperKhurramNaseem/audio_video_calling
7bdf424
lib/flow/call_page/controller/call_page_notifier.dart
Dart
www.github.com/DeveloperKhurramNaseem/audio_video_calling/tree/main/lib/flow/call_page/controller/call_page_notifier.dart
https://raw.githubusercontent.com/DeveloperKhurramNaseem/audio_video_calling/7bdf424/lib/flow/call_page/controller/call_page_notifier.dart
DeveloperKhurramNaseem/audio_video_calling 7bdf424 lib/flow/call_page/controller/call_page_notifier.dart
true
200
7,255
import 'dart:developer'; import 'package:audio_video_calling/flow/call_page/controller/call_page_states.dart'; import 'package:audio_video_calling/utils/error_handling/error_codes_handler.dart'; import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:permission_h...
3
diovaniomota/conecta_pro2
32f5c75
lib/pages/login_page/login_page_model.dart
Dart
www.github.com/diovaniomota/conecta_pro2/tree/main/lib/pages/login_page/login_page_model.dart
https://raw.githubusercontent.com/diovaniomota/conecta_pro2/32f5c75/lib/pages/login_page/login_page_model.dart
diovaniomota/conecta_pro2 32f5c75 lib/pages/login_page/login_page_model.dart
true
200
1,601
import '/backend/api_requests/api_calls.dart'; import '/backend/backend.dart'; import '/flutter_flow/flutter_flow_util.dart'; import 'login_page_widget.dart' show LoginPageWidget; import 'package:flutter/material.dart'; class LoginPageModel extends FlutterFlowModel<LoginPageWidget> { /// State fields for stateful w...
2
ybenhissi/GDA
36740fd
lib/services/service_locator.dart
Dart
www.github.com/ybenhissi/GDA/tree/main/lib/services/service_locator.dart
https://raw.githubusercontent.com/ybenhissi/GDA/36740fd/lib/services/service_locator.dart
ybenhissi/GDA 36740fd lib/services/service_locator.dart
true
200
3,734
import 'package:get_it/get_it.dart'; import 'package:pfe_iheb/consultation_screen_bloc/consultation_screen_bloc.dart'; import 'package:pfe_iheb/depenses_bloc/depenses_bloc.dart'; import 'package:pfe_iheb/donnees_techniques_bloc/donnees_techniques_bloc.dart'; import 'package:pfe_iheb/fiche_gda_bloc/fiche_gda_bloc.dart';...
4
mohamedrabia1/X_O_Game
63bdcf6
lib/game_board_splash.dart
Dart
www.github.com/mohamedrabia1/X_O_Game/tree/main/lib/game_board_splash.dart
https://raw.githubusercontent.com/mohamedrabia1/X_O_Game/63bdcf6/lib/game_board_splash.dart
mohamedrabia1/X_O_Game 63bdcf6 lib/game_board_splash.dart
true
200
1,460
import 'package:flutter/material.dart'; import 'package:x_o/game_board.dart'; import 'package:x_o/game_board_arugs.dart'; class GameBoardSplash extends StatelessWidget { static String routeName = "game board splash"; TextEditingController Player1Controller = TextEditingController(); TextEditingController Player2...
1
AndersonDutra7/DesenvolvimentoMobile
f68b7f3
need_food/lib/components/recommended_card.dart
Dart
www.github.com/AndersonDutra7/DesenvolvimentoMobile/tree/main/need_food/lib/components/recommended_card.dart
https://raw.githubusercontent.com/AndersonDutra7/DesenvolvimentoMobile/f68b7f3/need_food/lib/components/recommended_card.dart
AndersonDutra7/DesenvolvimentoMobile f68b7f3 need_food/lib/components/recommended_card.dart
true
200
1,560
import 'package:flutter/material.dart'; import 'package:need_food/views/product_details_page.dart'; class RecommendedCard extends StatelessWidget { final String productId; final String title; final String imageUrl; final String price; const RecommendedCard({ Key? key, required this.productId, re...
6
RashidMinhas47/Markhor-Movers
c68c1e9
lib/screens/auth/add_payment.dart
Dart
www.github.com/RashidMinhas47/Markhor-Movers/tree/main/lib/screens/auth/add_payment.dart
https://raw.githubusercontent.com/RashidMinhas47/Markhor-Movers/c68c1e9/lib/screens/auth/add_payment.dart
RashidMinhas47/Markhor-Movers c68c1e9 lib/screens/auth/add_payment.dart
true
200
2,714
import 'package:flutter/material.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:markhor_movers/components/auth_button.dart'; import 'package:markhor_movers/components/leading_title_text.dart'; import 'package:markhor_movers/constants/image_urls.dart'; import 'package:markhor_movers/screens/home/h...
5
SamuelReinaldoRamirez/hotel_map
07fe148
lib/restaurant_service.dart
Dart
www.github.com/SamuelReinaldoRamirez/hotel_map/tree/main/lib/restaurant_service.dart
https://raw.githubusercontent.com/SamuelReinaldoRamirez/hotel_map/07fe148/lib/restaurant_service.dart
SamuelReinaldoRamirez/hotel_map 07fe148 lib/restaurant_service.dart
true
200
2,489
// import 'dart:convert'; // import 'package:http/http.dart' as http; // import 'restaurant.dart'; // class RestaurantService { // Future<List<Restaurant>> fetchRestaurants() async { // final response = await http.get(Uri.parse('https://x8ki-letl-twmt.n7.xano.io/api:LYxWamUX/restaurants')); // Remplace avec ton ...
3
senaecelik/Why-not-143
5863f73
lib/meta/widget/coming_soon_widget.dart
Dart
www.github.com/senaecelik/Why-not-143/tree/main/lib/meta/widget/coming_soon_widget.dart
https://raw.githubusercontent.com/senaecelik/Why-not-143/5863f73/lib/meta/widget/coming_soon_widget.dart
senaecelik/Why-not-143 5863f73 lib/meta/widget/coming_soon_widget.dart
true
200
1,960
import 'package:flutter/material.dart'; import 'package:flutter_circular_text/circular_text.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:why_not_143_team/meta/helper/constant/color_constant.dart'; import 'package:why_not_143_team/meta/helper/constant/padding_constant.dart'; import...
0
AutoAidLtd/AutoAid.MO
5791179
lib/pages/user_page/user_page.dart
Dart
www.github.com/AutoAidLtd/AutoAid.MO/tree/main/lib/pages/user_page/user_page.dart
https://raw.githubusercontent.com/AutoAidLtd/AutoAid.MO/5791179/lib/pages/user_page/user_page.dart
AutoAidLtd/AutoAid.MO 5791179 lib/pages/user_page/user_page.dart
true
200
7,071
import 'package:autoaid/routes/router.dart'; import 'package:autoaid/utils/button.dart'; import 'package:autoaid/utils/palette.dart'; import 'package:autoaid/utils/socket_management/socket.dart'; import 'package:autoaid/utils/widgets/size_box.dart'; import 'package:flutter/material.dart'; import 'package:go_router/go_r...
4
cbunicorn/blackboxai-1743106008703
8e4d246
sport_sync_project/sport_sync/user-workspace/sport_sync/lib/providers/wearable_provider.dart
Dart
www.github.com/cbunicorn/blackboxai-1743106008703/tree/main/sport_sync_project/sport_sync/user-workspace/sport_sync/lib/providers/wearable_provider.dart
https://raw.githubusercontent.com/cbunicorn/blackboxai-1743106008703/8e4d246/sport_sync_project/sport_sync/user-workspace/sport_sync/lib/providers/wearable_provider.dart
cbunicorn/blackboxai-1743106008703 8e4d246 sport_sync_project/sport_sync/user-workspace/sport_sync/lib/providers/wearable_provider.dart
true
200
7,897
import 'dart:async'; import 'package:flutter/material.dart'; import '../models/performance_data.dart'; import '../services/wearable_service.dart'; import '../services/firebase_service.dart'; import '../utils/constants.dart'; enum DeviceConnectionStatus { disconnected, connecting, connected, error, } class Wea...
7
mushanlianshi/LBFlutterDemo
9db1247
lib/module/EnumConvert/l_b_enum_convert_page/l_b_enum_convert_page_view.dart
Dart
www.github.com/mushanlianshi/LBFlutterDemo/tree/main/lib/module/EnumConvert/l_b_enum_convert_page/l_b_enum_convert_page_view.dart
https://raw.githubusercontent.com/mushanlianshi/LBFlutterDemo/9db1247/lib/module/EnumConvert/l_b_enum_convert_page/l_b_enum_convert_page_view.dart
mushanlianshi/LBFlutterDemo 9db1247 lib/module/EnumConvert/l_b_enum_convert_page/l_b_enum_convert_page_view.dart
true
200
4,100
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:lb_flutter_project/common_widget/BLTScaffoldWidget.dart'; import 'package:lb_flutter_project/common_widget/WidgetExtension/BLTWidgetExtensions.dart'; import 'package:lb_flutter_project/module/EnumConvert/entity/l_b_enum_convert_m...
2
AbdulrhmanM0hamed/Reef-Coffe
2266e3f
lib/feature/cart/presentation/widgets/cart_item_widget.dart
Dart
www.github.com/AbdulrhmanM0hamed/Reef-Coffe/tree/main/lib/feature/cart/presentation/widgets/cart_item_widget.dart
https://raw.githubusercontent.com/AbdulrhmanM0hamed/Reef-Coffe/2266e3f/lib/feature/cart/presentation/widgets/cart_item_widget.dart
AbdulrhmanM0hamed/Reef-Coffe 2266e3f lib/feature/cart/presentation/widgets/cart_item_widget.dart
true
200
5,714
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:cached_network_image/cached_network_image.dart'; import 'package:hyper_market/core/utils/constants/colors.dart'; import 'package:hyper_market/core/widgets/add_and_del.dart'; import '../../data/models/cart_item_model...
1
dkt147/HumaraGhar-Flutter
2cacd79
lib/view/main_screen/profile_view/profile_view.dart
Dart
www.github.com/dkt147/HumaraGhar-Flutter/tree/main/lib/view/main_screen/profile_view/profile_view.dart
https://raw.githubusercontent.com/dkt147/HumaraGhar-Flutter/2cacd79/lib/view/main_screen/profile_view/profile_view.dart
dkt147/HumaraGhar-Flutter 2cacd79 lib/view/main_screen/profile_view/profile_view.dart
true
200
14,884
import 'package:HumaraGhar/API%20testing/local%20db%20testing/user_service.dart'; import 'package:HumaraGhar/components/round_button.dart'; import 'package:HumaraGhar/routes/routes_name.dart'; import 'package:HumaraGhar/utils/Navigation_Drawer/navigation_drawer.dart'; import 'package:HumaraGhar/utils/background_contain...
0
SidahmedBelkadi/Tasky
d659511
lib/src/core/utils/helpers/launch_helper.dart
Dart
www.github.com/SidahmedBelkadi/Tasky/tree/main/lib/src/core/utils/helpers/launch_helper.dart
https://raw.githubusercontent.com/SidahmedBelkadi/Tasky/d659511/lib/src/core/utils/helpers/launch_helper.dart
SidahmedBelkadi/Tasky d659511 lib/src/core/utils/helpers/launch_helper.dart
true
200
452
import 'package:shared_preferences/shared_preferences.dart'; import '../resources/app.keys.dart'; class LaunchHelper { final SharedPreferences sharedPreferences; LaunchHelper({required this.sharedPreferences}); bool isFirstTime() { final bool? result = sharedPreferences.getBool(AppKeys.firstLaunch); re...
5
chitoserain/dart-oop
8c8754e
bin/data/sum.dart
Dart
www.github.com/chitoserain/dart-oop/tree/main/bin/data/sum.dart
https://raw.githubusercontent.com/chitoserain/dart-oop/8c8754e/bin/data/sum.dart
chitoserain/dart-oop 8c8754e bin/data/sum.dart
true
200
229
class Sum { int first; int second; Sum(this.first, this.second); int call() => first + second; } typedef Total = Sum; typedef Jumlah = Sum; void main() { var sum = Sum(10, 10); // Callable class print(sum()); }
7
VarshithReddy03/https---github.com-Moinuddin9777-storefront_dev
2ece927
lib/home_screen/controller/dropdown_controller.dart
Dart
www.github.com/VarshithReddy03/https---github.com-Moinuddin9777-storefront_dev/tree/main/lib/home_screen/controller/dropdown_controller.dart
https://raw.githubusercontent.com/VarshithReddy03/https---github.com-Moinuddin9777-storefront_dev/2ece927/lib/home_screen/controller/dropdown_controller.dart
VarshithReddy03/https---github.com-Moinuddin9777-storefront_dev 2ece927 lib/home_screen/controller/dropdown_controller.dart
true
200
836
import 'package:get/get.dart'; class DropdownController extends GetxController { String? selectedValue; void setSelectedValue(String value) { selectedValue = value; update(); } void handleSearchIconClick() { if (selectedValue != null && selectedValue!.isNotEmpty) { String selectedBrand = se...
2
AgustinVizcarra/SecPUCP
3dcb173
secpucp/lib/bNavigation/bottom_nav_admin.dart
Dart
www.github.com/AgustinVizcarra/SecPUCP/tree/main/secpucp/lib/bNavigation/bottom_nav_admin.dart
https://raw.githubusercontent.com/AgustinVizcarra/SecPUCP/3dcb173/secpucp/lib/bNavigation/bottom_nav_admin.dart
AgustinVizcarra/SecPUCP 3dcb173 secpucp/lib/bNavigation/bottom_nav_admin.dart
true
200
1,359
import 'package:flutter/material.dart'; class BNavigatorAdmin extends StatefulWidget { final Function currentIndex; const BNavigatorAdmin({super.key, required this.currentIndex}); @override State<BNavigatorAdmin> createState() => _BNavigatorAdminState(); } class _BNavigatorAdminState extends State<BNavigato...
3
lxndrsldtv/lcargo
300288c
packages/order_service/lib/src/widgets/delivery_order_list.dart
Dart
www.github.com/lxndrsldtv/lcargo/tree/main/packages/order_service/lib/src/widgets/delivery_order_list.dart
https://raw.githubusercontent.com/lxndrsldtv/lcargo/300288c/packages/order_service/lib/src/widgets/delivery_order_list.dart
lxndrsldtv/lcargo 300288c packages/order_service/lib/src/widgets/delivery_order_list.dart
true
200
1,015
import 'package:flutter/material.dart'; import 'package:order_service/order_service.dart'; import 'package:ui_kit/ui_kit.dart'; class DeliveryOrderList extends StatelessWidget { const DeliveryOrderList({super.key, required this.deliveryOrderRepository}); final DeliveryOrderRepository deliveryOrderRepository; @...
4
blayziken/riverpod_cocktail
80329b4
lib/services/endpoints.dart
Dart
www.github.com/blayziken/riverpod_cocktail/tree/main/lib/services/endpoints.dart
https://raw.githubusercontent.com/blayziken/riverpod_cocktail/80329b4/lib/services/endpoints.dart
blayziken/riverpod_cocktail 80329b4 lib/services/endpoints.dart
true
200
365
import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:riverpod_cocktail/pages/home.dart'; // final appEndpointsProvider = StateProvider<String>((_) => ''); class APP_URLS { final String domain; APP_URLS(this.domain); String LoginUrl() { // String domain = ref.read(domainProvider); re...
1
robindevelops/Grocery_App-Ui
1b60bfe
lib/RegisterUser/Mainpage.dart
Dart
www.github.com/robindevelops/Grocery_App-Ui/tree/main/lib/RegisterUser/Mainpage.dart
https://raw.githubusercontent.com/robindevelops/Grocery_App-Ui/1b60bfe/lib/RegisterUser/Mainpage.dart
robindevelops/Grocery_App-Ui 1b60bfe lib/RegisterUser/Mainpage.dart
true
200
2,120
// ignore_for_file: prefer_const_constructors import 'package:flutter/material.dart'; import 'package:ui_practice/RegisterUser/Login_page.dart'; import 'package:ui_practice/RegisterUser/Signuppage.dart'; class SignUpScreens extends StatefulWidget { const SignUpScreens({super.key}); @override State<SignUpScreen...
6
chengjieyu77/Flutter-LearningExamples
be5f64b
ulearningm_app/lib/widgets/third_party_login.dart
Dart
www.github.com/chengjieyu77/Flutter-LearningExamples/tree/main/ulearningm_app/lib/widgets/third_party_login.dart
https://raw.githubusercontent.com/chengjieyu77/Flutter-LearningExamples/be5f64b/ulearningm_app/lib/widgets/third_party_login.dart
chengjieyu77/Flutter-LearningExamples be5f64b ulearningm_app/lib/widgets/third_party_login.dart
true
200
991
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'login_icon.dart'; class ThirdPartyLogin extends StatelessWidget { const ThirdPartyLogin({super.key}); @override Widget build(BuildContext context) { return Container( margin: EdgeInsets.only(left: 80, right: 80, ...
0
ManIlya/test_router_in_module
4990cb9
example/lib/features/product_list/product_list_wm.dart
Dart
www.github.com/ManIlya/test_router_in_module/tree/main/example/lib/features/product_list/product_list_wm.dart
https://raw.githubusercontent.com/ManIlya/test_router_in_module/4990cb9/example/lib/features/product_list/product_list_wm.dart
ManIlya/test_router_in_module 4990cb9 example/lib/features/product_list/product_list_wm.dart
true
200
979
import 'package:auto_route/auto_route.dart'; import 'package:core/core.dart'; import 'package:elementary/elementary.dart'; import 'package:example/router/app_router.dart'; import 'package:flutter/material.dart'; import 'product_list_model.dart'; import 'product_list_widget.dart'; abstract interface class IProductList...
5
Barmaim-Umar/Barmaim-Umar
abf246f
lib/View/ReportDashboard/TripBalanceReport/TripBalanceReport.dart
Dart
www.github.com/Barmaim-Umar/Barmaim-Umar/tree/main/lib/View/ReportDashboard/TripBalanceReport/TripBalanceReport.dart
https://raw.githubusercontent.com/Barmaim-Umar/Barmaim-Umar/abf246f/lib/View/ReportDashboard/TripBalanceReport/TripBalanceReport.dart
Barmaim-Umar/Barmaim-Umar abf246f lib/View/ReportDashboard/TripBalanceReport/TripBalanceReport.dart
true
200
13,175
import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; import 'package:pfc/utility/Widgets/SearchDropdownWidget.dart'; import 'package:pfc/utility/colors.dart'; import 'package:pfc/utility/styles.dart'; import 'package:pfc/utility/utility.dart'; class TripBalanceReport extends StatefulWidget ...
3
D1f3r3nt/Pokedex-Petit
0adb4b3
lib/model/search_pokemon/SearchPokemonDto.dart
Dart
www.github.com/D1f3r3nt/Pokedex-Petit/tree/main/lib/model/search_pokemon/SearchPokemonDto.dart
https://raw.githubusercontent.com/D1f3r3nt/Pokedex-Petit/0adb4b3/lib/model/search_pokemon/SearchPokemonDto.dart
D1f3r3nt/Pokedex-Petit 0adb4b3 lib/model/search_pokemon/SearchPokemonDto.dart
true
200
385
import 'dart:convert'; class SearchPokemonDto { SearchPokemonDto({ required this.name, required this.url, }); String name; String url; factory SearchPokemonDto.fromJson(String str) => SearchPokemonDto.fromMap(json.decode(str)); factory SearchPokemonDto.fromMap(Map<String, dynamic> json) => Searc...
7
MatheusFinatto/taix
a468395
lib/screens/viagens/add_trip_form.dart
Dart
www.github.com/MatheusFinatto/taix/tree/main/lib/screens/viagens/add_trip_form.dart
https://raw.githubusercontent.com/MatheusFinatto/taix/a468395/lib/screens/viagens/add_trip_form.dart
MatheusFinatto/taix a468395 lib/screens/viagens/add_trip_form.dart
true
200
19,697
import 'dart:convert'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:flutter_application_1/models/pessoas.dart'; import 'package:flutter_application_1/models/veiculos.dart'; import 'package:flutter_applic...
2
arajit123/Icici_Banking_app
0c03f32
lib/screens/My_cards/my_cards.dart
Dart
www.github.com/arajit123/Icici_Banking_app/tree/main/lib/screens/My_cards/my_cards.dart
https://raw.githubusercontent.com/arajit123/Icici_Banking_app/0c03f32/lib/screens/My_cards/my_cards.dart
arajit123/Icici_Banking_app 0c03f32 lib/screens/My_cards/my_cards.dart
true
200
5,625
import 'package:banking_app/common_widgets/common_appbar.dart'; import 'package:banking_app/constant/color_theme.dart'; import 'package:banking_app/constant/font_theme.dart'; import 'package:banking_app/screens/card_details/card_details.dart'; import 'package:banking_app/screens/track_application/track_application.dart...
4
dadisntmad/flutter-phone-book
7389aeb
lib/resources/auth_methods.dart
Dart
www.github.com/dadisntmad/flutter-phone-book/tree/main/lib/resources/auth_methods.dart
https://raw.githubusercontent.com/dadisntmad/flutter-phone-book/7389aeb/lib/resources/auth_methods.dart
dadisntmad/flutter-phone-book 7389aeb lib/resources/auth_methods.dart
true
200
1,894
import 'package:firebase_auth/firebase_auth.dart'; import 'package:phone_book/constants.dart'; import 'package:phone_book/models/company.dart'; class AuthMethods { // sign up Future<String> signUp(String email, String password) async { String response = 'Error'; try { if (email.isEmpty || password.is...
1
beelchester/kairos
15b5c42
app/lib/src/global_states.dart
Dart
www.github.com/beelchester/kairos/tree/main/app/lib/src/global_states.dart
https://raw.githubusercontent.com/beelchester/kairos/15b5c42/app/lib/src/global_states.dart
beelchester/kairos 15b5c42 app/lib/src/global_states.dart
true
200
1,185
import 'package:flutter/material.dart'; import 'package:kairos/src/api/models/project.dart'; import 'package:kairos/src/api/models/session.dart'; class GlobalStates extends ChangeNotifier { bool isOffline = false; bool get isOfflineState => isOffline; set setOfflineState(bool value) { isOffline = value; ...
6
komal-010/Dart_2024
ae8b938
pattern_Assignment/space_pattern11/code5.dart
Dart
www.github.com/komal-010/Dart_2024/tree/main/pattern_Assignment/space_pattern11/code5.dart
https://raw.githubusercontent.com/komal-010/Dart_2024/ae8b938/pattern_Assignment/space_pattern11/code5.dart
komal-010/Dart_2024 ae8b938 pattern_Assignment/space_pattern11/code5.dart
true
200
262
import 'dart:io'; void main(){ int rows=3; int number=1; for(int i=1;i<=rows;i++){ for(int j=rows-i;j>0;j--){ stdout.write(" "); } for(int k=1;k<=i;k++){ stdout.write("${number*number}"); number++; } print(""); } }
5
Arjun13k/hotel_menu
cdaf493
lib/screens/thankyou_screen/thankyou_screen.dart
Dart
www.github.com/Arjun13k/hotel_menu/tree/main/lib/screens/thankyou_screen/thankyou_screen.dart
https://raw.githubusercontent.com/Arjun13k/hotel_menu/cdaf493/lib/screens/thankyou_screen/thankyou_screen.dart
Arjun13k/hotel_menu cdaf493 lib/screens/thankyou_screen/thankyou_screen.dart
true
200
391
import 'package:flutter/material.dart'; class ThankyouScreen extends StatelessWidget { const ThankyouScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(), body: Center( child: Text( "Thank you!", style: TextStyle(fontWe...
0
andresbadillo/flutter_user_preferences
18b1c1f
lib/screens/home_screen.dart
Dart
www.github.com/andresbadillo/flutter_user_preferences/tree/main/lib/screens/home_screen.dart
https://raw.githubusercontent.com/andresbadillo/flutter_user_preferences/18b1c1f/lib/screens/home_screen.dart
andresbadillo/flutter_user_preferences 18b1c1f lib/screens/home_screen.dart
true
200
888
import 'package:flutter/material.dart'; import '../share_preferences/preferences.dart'; import '../widgets/widgets.dart'; class HomeScreen extends StatelessWidget { static const String ruoterName = 'Home'; const HomeScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { ret...
3
harrymuliawan03/flutter_initial
012531b
lib/globals/widgets/button/popup_menu_button.dart
Dart
www.github.com/harrymuliawan03/flutter_initial/tree/main/lib/globals/widgets/button/popup_menu_button.dart
https://raw.githubusercontent.com/harrymuliawan03/flutter_initial/012531b/lib/globals/widgets/button/popup_menu_button.dart
harrymuliawan03/flutter_initial 012531b lib/globals/widgets/button/popup_menu_button.dart
true
200
3,646
import 'package:flutter/material.dart'; import 'package:mobile_plus/core/theme/app_color.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:mobile_plus/core/theme/app_font_weight.dart'; import 'package:mobile_plus/core/theme/app_textstyle.dart'; import 'package:mobile_plus/l10n/hooks.da...
7
MahmouudMohamed/test123
5460580
lib/Shared Widget/custom_rate.dart
Dart
www.github.com/MahmouudMohamed/test123/tree/main/lib/Shared Widget/custom_rate.dart
https://raw.githubusercontent.com/MahmouudMohamed/test123/5460580/lib/Shared%20Widget/custom_rate.dart
MahmouudMohamed/test123 5460580 lib/Shared Widget/custom_rate.dart
true
200
470
import 'package:flutter/material.dart'; class CustomRate extends StatelessWidget { String vote; CustomRate({required this.vote,super.key}); @override Widget build(BuildContext context) { return Wrap( children: [ const Icon( Icons.star, color: Colors.yellow, si...
2
KshanadaTota/blooddonation
8f3bf8f
donor_submitted_list.dart
Dart
www.github.com/KshanadaTota/blooddonation/tree/main/donor_submitted_list.dart
https://raw.githubusercontent.com/KshanadaTota/blooddonation/8f3bf8f/donor_submitted_list.dart
KshanadaTota/blooddonation 8f3bf8f donor_submitted_list.dart
true
200
714
import 'package:flutter/material.dart'; class DonorSubmittedList extends StatelessWidget { final List<Map<String, String>> donors; DonorSubmittedList({required this.donors, required List<Map<String, String>> recipients}); @override Widget build(BuildContext context) { return Scaffold( app...
1
Darius1905/weatherappc
6fb4d7c
lib/data/repository/weatherRepository.dart
Dart
www.github.com/Darius1905/weatherappc/tree/main/lib/data/repository/weatherRepository.dart
https://raw.githubusercontent.com/Darius1905/weatherappc/6fb4d7c/lib/data/repository/weatherRepository.dart
Darius1905/weatherappc 6fb4d7c lib/data/repository/weatherRepository.dart
true
200
953
import 'package:weatherapp/data/model/weatherModel.dart'; import 'package:weatherapp/data/source/weatherSource.dart'; abstract interface class weatherRepository{ Future<List<WeatherDataModel>?> loadData(); } class DefaultRepository implements weatherRepository{ final LoadDataWeather _loadDataSource; DefaultRepos...
4
SendyDobariya/flutter-clean-architecture
426df1d
lib/Cubit/Core/Helper/hive_helper.dart
Dart
www.github.com/SendyDobariya/flutter-clean-architecture/tree/main/lib/Cubit/Core/Helper/hive_helper.dart
https://raw.githubusercontent.com/SendyDobariya/flutter-clean-architecture/426df1d/lib/Cubit/Core/Helper/hive_helper.dart
SendyDobariya/flutter-clean-architecture 426df1d lib/Cubit/Core/Helper/hive_helper.dart
true
200
841
import 'dart:io'; import 'package:clean_demo/Cubit/Features/UserListingScreen/Data/Models/user_model.dart'; import 'package:hive/hive.dart'; import 'package:path_provider/path_provider.dart' as pathProvider; class HiveHelper { Future<void> open() async { Directory appDocDir = await pathProvider.getApplicationDo...
6
professorfc/professorfc_app
097335f
app/lib/shared/load_mock.dart
Dart
www.github.com/professorfc/professorfc_app/tree/main/app/lib/shared/load_mock.dart
https://raw.githubusercontent.com/professorfc/professorfc_app/097335f/app/lib/shared/load_mock.dart
professorfc/professorfc_app 097335f app/lib/shared/load_mock.dart
true
200
254
import 'dart:convert'; import 'package:flutter/services.dart'; class LoadMock { static Future<Map<String, dynamic>> fromAsset(String path) async { final data = await rootBundle.loadString("assets/mocks/$path"); return jsonDecode(data); } }
0
V4nshaj/IOT-Paralysis-Patient-Monitoring-System
3050237
paramov/lib/components/rounded_button.dart
Dart
www.github.com/V4nshaj/IOT-Paralysis-Patient-Monitoring-System/tree/main/paramov/lib/components/rounded_button.dart
https://raw.githubusercontent.com/V4nshaj/IOT-Paralysis-Patient-Monitoring-System/3050237/paramov/lib/components/rounded_button.dart
V4nshaj/IOT-Paralysis-Patient-Monitoring-System 3050237 paramov/lib/components/rounded_button.dart
true
200
815
import 'package:flutter/material.dart'; class RoundedButton extends StatelessWidget { final String text; //change nhi hoga VoidCallback onPressed; //call back Color colored; RoundedButton( {required this.text, required this.colored, required this.onPressed}) {} @override Widget build(BuildContext con...
5
ChaymaSaidani/post-flutter-clean-Architecture
be26617
lib/features/auth/domain/usecases/sign_out_user.dart
Dart
www.github.com/ChaymaSaidani/post-flutter-clean-Architecture/tree/main/lib/features/auth/domain/usecases/sign_out_user.dart
https://raw.githubusercontent.com/ChaymaSaidani/post-flutter-clean-Architecture/be26617/lib/features/auth/domain/usecases/sign_out_user.dart
ChaymaSaidani/post-flutter-clean-Architecture be26617 lib/features/auth/domain/usecases/sign_out_user.dart
true
200
405
import 'package:dartz/dartz.dart'; import 'package:post_app/core/failures/failures.dart'; import 'package:post_app/features/auth/domain/repositories/user_repo.dart'; class SignOutUserUseCase { final UserRepository userRepository; //injecter par SL SignOutUserUseCase(this.userRepository); Future<Either<Failu...
3
Carl0523/expense-tracker
3910287
lib/widgets/expenses_list/expense_item.dart
Dart
www.github.com/Carl0523/expense-tracker/tree/main/lib/widgets/expenses_list/expense_item.dart
https://raw.githubusercontent.com/Carl0523/expense-tracker/3910287/lib/widgets/expenses_list/expense_item.dart
Carl0523/expense-tracker 3910287 lib/widgets/expenses_list/expense_item.dart
true
200
2,769
import 'package:expense_tracker/my_theme.dart'; import 'package:flutter/material.dart'; import 'package:expense_tracker/models/expense.dart'; import 'package:google_fonts/google_fonts.dart'; /// It's reponsible to style one [expense] item in the Expenses ViewList class ExpenseItem extends StatelessWidget { final Exp...
7
fhidalgoGC/ctrgc
d015747
lib/auth/custom_auth/custom_auth_user_provider.dart
Dart
www.github.com/fhidalgoGC/ctrgc/tree/main/lib/auth/custom_auth/custom_auth_user_provider.dart
https://raw.githubusercontent.com/fhidalgoGC/ctrgc/d015747/lib/auth/custom_auth/custom_auth_user_provider.dart
fhidalgoGC/ctrgc d015747 lib/auth/custom_auth/custom_auth_user_provider.dart
true
200
498
import 'package:rxdart/rxdart.dart'; import 'custom_auth_manager.dart'; class TestgitAuthUser { TestgitAuthUser({required this.loggedIn, this.uid}); bool loggedIn; String? uid; } /// Generates a stream of the authenticated user. BehaviorSubject<TestgitAuthUser> testgitAuthUserSubject = BehaviorSubject.see...
2
brahimcherifi217/doctor_point_flutter
454ba10
lib/model/appointment.dart
Dart
www.github.com/brahimcherifi217/doctor_point_flutter/tree/main/lib/model/appointment.dart
https://raw.githubusercontent.com/brahimcherifi217/doctor_point_flutter/454ba10/lib/model/appointment.dart
brahimcherifi217/doctor_point_flutter 454ba10 lib/model/appointment.dart
true
200
836
// ignore_for_file: unnecessary_new, prefer_collection_literals, unnecessary_this import 'dart:convert'; Appointment appointmentModel(String str) => Appointment.fromJson(jsonDecode(str)); class Appointment { String? day; bool? selected; List<String>? morning; List<String>? evening; Appointment({this.d...
4
Sabahsaeedi7/otom-deploy
3fbbb84
lib/landing/landing_widget.dart
Dart
www.github.com/Sabahsaeedi7/otom-deploy/tree/main/lib/landing/landing_widget.dart
https://raw.githubusercontent.com/Sabahsaeedi7/otom-deploy/3fbbb84/lib/landing/landing_widget.dart
Sabahsaeedi7/otom-deploy 3fbbb84 lib/landing/landing_widget.dart
true
200
5,190
import '/flutter_flow/flutter_flow_animations.dart'; import '/flutter_flow/flutter_flow_theme.dart'; import '/flutter_flow/flutter_flow_util.dart'; import '/flutter_flow/flutter_flow_widgets.dart'; import 'package:flutter/material.dart'; import 'package:flutter/scheduler.dart'; import 'package:flutter_animate/flutter_a...
1
personnelacchedi/Antitatich
f488511
lib/consommateur_screens/filter_screen.dart
Dart
www.github.com/personnelacchedi/Antitatich/tree/main/lib/consommateur_screens/filter_screen.dart
https://raw.githubusercontent.com/personnelacchedi/Antitatich/f488511/lib/consommateur_screens/filter_screen.dart
personnelacchedi/Antitatich f488511 lib/consommateur_screens/filter_screen.dart
true
200
4,504
import 'package:flutter/material.dart'; class FilterScreen extends StatefulWidget { final double initialMinPrice; final double initialMaxPrice; final double initialMinDistance; final double initialMaxDistance; FilterScreen({ this.initialMinPrice = 0, this.initialMaxPrice = 100, this.initialMinDi...
6
aktharOG/Atendee
d71ee22
lib/view/provider/auth_provider.dart
Dart
www.github.com/aktharOG/Atendee/tree/main/lib/view/provider/auth_provider.dart
https://raw.githubusercontent.com/aktharOG/Atendee/d71ee22/lib/view/provider/auth_provider.dart
aktharOG/Atendee d71ee22 lib/view/provider/auth_provider.dart
true
200
1,721
import 'package:attendee/helpers/navigation_helper.dart'; import 'package:attendee/services/dio_service.dart'; import 'package:attendee/services/shared_pref_service.dart'; import 'package:attendee/view/screens/student/std_home.dart'; import 'package:attendee/view/screens/teacher/tcr_home.dart'; import 'package:dio/dio....
0