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
abubakar2001k/Chat-app-Firebase
130eab4
lib/widgets/genric_button.dart
Dart
www.github.com/abubakar2001k/Chat-app-Firebase/tree/main/lib/widgets/genric_button.dart
https://raw.githubusercontent.com/abubakar2001k/Chat-app-Firebase/130eab4/lib/widgets/genric_button.dart
abubakar2001k/Chat-app-Firebase 130eab4 lib/widgets/genric_button.dart
true
200
810
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class GenricButton extends StatelessWidget { final String? text; final VoidCallback? onTap; const GenricButton({super.key, this.text, this.onTap }); @override Widget build(BuildContext context) { return SizedBox( heig...
1
AmmarHammoud/ProkodersFlutterTasks
f6126db
lib/task_3/components/animated_floating_action_button.dart
Dart
www.github.com/AmmarHammoud/ProkodersFlutterTasks/tree/main/lib/task_3/components/animated_floating_action_button.dart
https://raw.githubusercontent.com/AmmarHammoud/ProkodersFlutterTasks/f6126db/lib/task_3/components/animated_floating_action_button.dart
AmmarHammoud/ProkodersFlutterTasks f6126db lib/task_3/components/animated_floating_action_button.dart
true
200
982
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:prokoders_flutter_tasks/task_2/home_screen/logic/home_controller.dart'; class AnimatedFloatingActionButton extends StatelessWidget { AnimatedFloatingActionButton({super.key, required this.onPressed}); final Duration duration = ...
3
shauritanga/ZACaccount
6aeeba5
lib/models/role.dart
Dart
www.github.com/shauritanga/ZACaccount/tree/main/lib/models/role.dart
https://raw.githubusercontent.com/shauritanga/ZACaccount/6aeeba5/lib/models/role.dart
shauritanga/ZACaccount 6aeeba5 lib/models/role.dart
true
200
992
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:zaccount/models/custom_permissions.dart'; class Role { String? id; String roleName; CustomPermissions permissions; Role({this.id, required this.roleName, required this.permissions}); // Convert Role to Map for easier storage Map<Strin...
2
shymaaemara/warshaonline
416cab8
lib/app/warsha/controllers/user/user_order_making_controller.dart
Dart
www.github.com/shymaaemara/warshaonline/tree/main/lib/app/warsha/controllers/user/user_order_making_controller.dart
https://raw.githubusercontent.com/shymaaemara/warshaonline/416cab8/lib/app/warsha/controllers/user/user_order_making_controller.dart
shymaaemara/warshaonline 416cab8 lib/app/warsha/controllers/user/user_order_making_controller.dart
true
200
6,875
import 'package:flutter/cupertino.dart'; import 'package:get/get.dart'; import 'package:uuid/uuid.dart'; import 'package:warshaonline/app/warsha/controllers/auth/auth_controller.dart'; import 'package:warshaonline/app/warsha/data/common_call.dart'; import 'package:warshaonline/app/warsha/data/models/common/tempcart_mod...
0
the-kaushal-agrawal/mitt-arv-assignment
c9ca945
lib/profile.dart
Dart
www.github.com/the-kaushal-agrawal/mitt-arv-assignment/tree/main/lib/profile.dart
https://raw.githubusercontent.com/the-kaushal-agrawal/mitt-arv-assignment/c9ca945/lib/profile.dart
the-kaushal-agrawal/mitt-arv-assignment c9ca945 lib/profile.dart
true
200
649
class User { String name; int age; String gender; String country; List<String> hobbies; User({ required this.name, required this.age, required this.gender, required this.country, required this.hobbies, }); User.fromJson(Map<String, dynamic> json) : name = json['name'], ...
5
MoeezKing/Dart-Language
bf48242
Tax Calculator.dart
Dart
www.github.com/MoeezKing/Dart-Language/tree/main/Tax Calculator.dart
https://raw.githubusercontent.com/MoeezKing/Dart-Language/bf48242/Tax%20Calculator.dart
MoeezKing/Dart-Language bf48242 Tax Calculator.dart
true
200
557
import 'dart:io'; void taxCalculator(double salary,int age) { if(salary>=35000) { if(age<50) { print('Your tax is ${(salary*10)/100}'); } else{ print('NO Tax as you are senior citizen .'); } }else{ print('No tax on your salary because your salary is less then tax applicable in...
7
richardborgesdev/flutter-cod3r-dart-fundamentals
8aa44c4
controle/break_continue.dart
Dart
www.github.com/richardborgesdev/flutter-cod3r-dart-fundamentals/tree/main/controle/break_continue.dart
https://raw.githubusercontent.com/richardborgesdev/flutter-cod3r-dart-fundamentals/8aa44c4/controle/break_continue.dart
richardborgesdev/flutter-cod3r-dart-fundamentals 8aa44c4 controle/break_continue.dart
true
200
302
void main(List<String> args) { for (var i = 0; i < 10; i++) { if (i == 6) { break; } print(i); } print('Depois do laço for [break]'); for (var i = 0; i < 10; i++) { if (i % 2 == 1) { continue; } print(i); } print('Depois do laço for [continue]'); }
4
abhishekbardolia/MovieDB-using-bloc
9efa88c
lib/data/model/genre/genre_model.dart
Dart
www.github.com/abhishekbardolia/MovieDB-using-bloc/tree/main/lib/data/model/genre/genre_model.dart
https://raw.githubusercontent.com/abhishekbardolia/MovieDB-using-bloc/9efa88c/lib/data/model/genre/genre_model.dart
abhishekbardolia/MovieDB-using-bloc 9efa88c lib/data/model/genre/genre_model.dart
true
200
479
import 'genres_list.dart'; class Genre { Genre({ this.genres,}); Genre.fromJson(dynamic json) { if (json['genres'] != null) { genres = []; json['genres'].forEach((v) { genres?.add(GenresList.fromJson(v)); }); } } List<GenresList>? genres; Map<String, dynamic> toJson...
6
CallmeCarlos503/codename-Johammy
b00a9c6
lib/SQL/db.dart
Dart
www.github.com/CallmeCarlos503/codename-Johammy/tree/main/lib/SQL/db.dart
https://raw.githubusercontent.com/CallmeCarlos503/codename-Johammy/b00a9c6/lib/SQL/db.dart
CallmeCarlos503/codename-Johammy b00a9c6 lib/SQL/db.dart
true
200
7,021
import 'dart:async'; import 'package:flutter/widgets.dart'; import 'package:path/path.dart'; import 'package:sqflite/sqflite.dart'; class Db { static String tabla1="CREATE TABLE USUARIOS (ID INTEGER,NOMBRE TEXT NOT NULL,CORREO TEXT NOT NULL,PASSWORD TEXT NOT NULL,TELEFONO TEXT NOT NULL, ID_ESTADOS INTEGER NOT N...
1
fs-sournary/clean_architecture_flutter
d4cc6fa
lib/usecase/use_case.dart
Dart
www.github.com/fs-sournary/clean_architecture_flutter/tree/main/lib/usecase/use_case.dart
https://raw.githubusercontent.com/fs-sournary/clean_architecture_flutter/d4cc6fa/lib/usecase/use_case.dart
fs-sournary/clean_architecture_flutter d4cc6fa lib/usecase/use_case.dart
true
200
212
/// The base class handles tasks synchronously. /// /// It takes two types: /// - [P] The type of parameter. /// - [R] The type of result. abstract class UseCase<P, R> { const UseCase(); R call(P params); }
3
Dutus244/hcmus_alumni_mobile
3519319
lib/pages/event_detail_edit_comment/event_detail_edit_comment.dart
Dart
www.github.com/Dutus244/hcmus_alumni_mobile/tree/main/lib/pages/event_detail_edit_comment/event_detail_edit_comment.dart
https://raw.githubusercontent.com/Dutus244/hcmus_alumni_mobile/3519319/lib/pages/event_detail_edit_comment/event_detail_edit_comment.dart
Dutus244/hcmus_alumni_mobile 3519319 lib/pages/event_detail_edit_comment/event_detail_edit_comment.dart
true
200
1,697
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import '../../common/values/colors.dart'; import '../../model/comment.dart'; import '../../model/event.dart'; import 'bloc/event_detail_edit_comment_blocs.dart'; import 'bloc/event_detail_e...
0
Yuvanraj24/Kntag
e701d2b
lib/ui/views/saved_view/saved_view.dart
Dart
www.github.com/Yuvanraj24/Kntag/tree/main/lib/ui/views/saved_view/saved_view.dart
https://raw.githubusercontent.com/Yuvanraj24/Kntag/e701d2b/lib/ui/views/saved_view/saved_view.dart
Yuvanraj24/Kntag e701d2b lib/ui/views/saved_view/saved_view.dart
true
200
1,282
import 'package:flutter/material.dart'; import 'package:kntag/widgets/Profile_view_widgets/book_club_container.dart'; import 'package:kntag/widgets/colorAndSize.dart'; class SavedView extends StatefulWidget { const SavedView({Key? key}) : super(key: key); @override State<SavedView> createState() => _SavedViewSt...
2
PhamXuanPhu/demo
8499a85
lib/main.dart
Dart
www.github.com/PhamXuanPhu/demo/tree/main/lib/main.dart
https://raw.githubusercontent.com/PhamXuanPhu/demo/8499a85/lib/main.dart
PhamXuanPhu/demo 8499a85 lib/main.dart
true
200
1,135
import 'package:bloc/bloc.dart'; import 'package:conasi/blocs/lead/lead_bloc.dart'; import 'package:conasi/screens/login_screen.dart'; import 'package:conasi/services/app_loading.dart'; import 'package:conasi/services/app_router.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.da...
5
aiswariyak/egramam
fce1f82
lib/admin/fstudent.dart
Dart
www.github.com/aiswariyak/egramam/tree/main/lib/admin/fstudent.dart
https://raw.githubusercontent.com/aiswariyak/egramam/fce1f82/lib/admin/fstudent.dart
aiswariyak/egramam fce1f82 lib/admin/fstudent.dart
true
200
1,951
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; class fstudent extends StatefulWidget { @override _fstudentState createState() => _fstudentState(); } class _fstudentState extends State<fstudent> { @override Widget build(BuildContext context) { return Scaffol...
7
YeohaengHama/YeohaengHama-mobile
ebb634f
lib/screen/client/review/picker/custom/file_custom.dart
Dart
www.github.com/YeohaengHama/YeohaengHama-mobile/tree/main/lib/screen/client/review/picker/custom/file_custom.dart
https://raw.githubusercontent.com/YeohaengHama/YeohaengHama-mobile/ebb634f/lib/screen/client/review/picker/custom/file_custom.dart
YeohaengHama/YeohaengHama-mobile ebb634f lib/screen/client/review/picker/custom/file_custom.dart
true
200
4,680
import 'package:flutter/material.dart'; import 'package:multi_image_picker_view/multi_image_picker_view.dart'; import '../custom_examples.dart'; import '../picker.dart'; class FilesCustomExample extends StatefulWidget { const FilesCustomExample({Key? key}) : super(key: key); @override State<FilesCustomExample...
4
YoussefAbdelmonem/BlueFieldNet-App
ca96d84
lib/modules/post_a_job/widgets/job_visibility_widget/widgets/talent_prefrence_widget.dart
Dart
www.github.com/YoussefAbdelmonem/BlueFieldNet-App/tree/main/lib/modules/post_a_job/widgets/job_visibility_widget/widgets/talent_prefrence_widget.dart
https://raw.githubusercontent.com/YoussefAbdelmonem/BlueFieldNet-App/ca96d84/lib/modules/post_a_job/widgets/job_visibility_widget/widgets/talent_prefrence_widget.dart
YoussefAbdelmonem/BlueFieldNet-App ca96d84 lib/modules/post_a_job/widgets/job_visibility_widget/widgets/talent_prefrence_widget.dart
true
200
2,216
import 'package:bluefieldnet/core/utiles/extentions.dart'; import 'package:bluefieldnet/core/utiles/validations.dart'; import 'package:bluefieldnet/modules/post_a_job/widgets/job_visibility_widget/widgets/visability_utils.dart'; import 'package:flutter/material.dart'; import 'package:easy_localization/easy_localization...
1
R-lab37/Libra-Library-Management-and-book-Summary-App
0b85614
lib/screens/signup_screen.dart
Dart
www.github.com/R-lab37/Libra-Library-Management-and-book-Summary-App/tree/main/lib/screens/signup_screen.dart
https://raw.githubusercontent.com/R-lab37/Libra-Library-Management-and-book-Summary-App/0b85614/lib/screens/signup_screen.dart
R-lab37/Libra-Library-Management-and-book-Summary-App 0b85614 lib/screens/signup_screen.dart
true
200
3,125
import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:libra/screens/login_screen.dart'; import 'package:libra/screens/terms_and_conditions_screen.dart'; import 'package:libra/services/auth_service.dart'; class SignUpScreen extends StatefulWidget { const SignUpScre...
6
Woisol/MECalculator_GUI
06cffbb
lib/main.dart
Dart
www.github.com/Woisol/MECalculator_GUI/tree/main/lib/main.dart
https://raw.githubusercontent.com/Woisol/MECalculator_GUI/06cffbb/lib/main.dart
Woisol/MECalculator_GUI 06cffbb lib/main.dart
true
200
4,914
import 'dart:io'; import 'package:flutter/material.dart'; import 'package:mecalculator/Home/home.dart'; import 'package:mecalculator/Home/title_bar.dart'; import 'package:window_manager/window_manager.dart'; // Size? screenSize; void main() async { WidgetsFlutterBinding.ensureInitialized(); await windowManager.en...
3
habib571/carpool-app
545d6dc
lib/presentation/pages/shareridemodule/view/widgets/custom_icon.dart
Dart
www.github.com/habib571/carpool-app/tree/main/lib/presentation/pages/shareridemodule/view/widgets/custom_icon.dart
https://raw.githubusercontent.com/habib571/carpool-app/545d6dc/lib/presentation/pages/shareridemodule/view/widgets/custom_icon.dart
habib571/carpool-app 545d6dc lib/presentation/pages/shareridemodule/view/widgets/custom_icon.dart
true
200
602
import 'package:carpooling/presentation/utils/utils.dart'; import 'package:flutter/material.dart'; class CustomIcon extends StatelessWidget { const CustomIcon({ super.key, required this.imageurl }); final String imageurl ; @override Widget build(BuildContext context) { return Container( de...
0
khushmadodiya/MeetingApp
b644b37
lib/ui/widgets/InkWellItem.dart
Dart
www.github.com/khushmadodiya/MeetingApp/tree/main/lib/ui/widgets/InkWellItem.dart
https://raw.githubusercontent.com/khushmadodiya/MeetingApp/b644b37/lib/ui/widgets/InkWellItem.dart
khushmadodiya/MeetingApp b644b37 lib/ui/widgets/InkWellItem.dart
true
200
1,302
import 'package:flutter/material.dart'; class InkWellItem extends StatelessWidget { final VoidCallback onTap; final String? imagePath; final String? label; final Widget? child; const InkWellItem({ Key? key, required this.onTap, this.child, this.imagePath, this.label, }) : super(key: ke...
2
hhs0579/dreamtalk
dd2b38b
metalk-231012-1334/lib/apis/language_api.dart
Dart
www.github.com/hhs0579/dreamtalk/tree/main/metalk-231012-1334/lib/apis/language_api.dart
https://raw.githubusercontent.com/hhs0579/dreamtalk/dd2b38b/metalk-231012-1334/lib/apis/language_api.dart
hhs0579/dreamtalk dd2b38b metalk-231012-1334/lib/apis/language_api.dart
true
200
2,605
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter_metalk/model/language_vo.dart'; class LanguageApi { static final CollectionReference _languagesRef = FirebaseFirestore.instance.collection('languages'); static Future<LanguageVo?> getLanguage(String id) async { DocumentSnapshot doc...
5
ahmdxhabibi/space
92f15f9
lib/widgets/profile_menu_item.dart
Dart
www.github.com/ahmdxhabibi/space/tree/main/lib/widgets/profile_menu_item.dart
https://raw.githubusercontent.com/ahmdxhabibi/space/92f15f9/lib/widgets/profile_menu_item.dart
ahmdxhabibi/space 92f15f9 lib/widgets/profile_menu_item.dart
true
200
1,102
import 'package:flutter/material.dart'; import 'package:space/theme.dart'; class ProfileMenuItem extends StatelessWidget { final String iconUrl; final String title; final bool isLightMode; const ProfileMenuItem( {Key? key, required this.iconUrl, required this.title, required this.isLigh...
4
parthflutter/flagproject
4286f38
lib/f10.dart
Dart
www.github.com/parthflutter/flagproject/tree/main/lib/f10.dart
https://raw.githubusercontent.com/parthflutter/flagproject/4286f38/lib/f10.dart
parthflutter/flagproject 4286f38 lib/f10.dart
true
200
738
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class f10 extends StatefulWidget { const f10({Key? key}) : super(key: key); @override State<f10> createState() => _f10State(); } class _f10State extends State<f10> { @override Widget build(BuildContext context) { return Sa...
1
MishaLazutkin/Mintness
8668720
lib/models/api_responses/current_timer_response.dart
Dart
www.github.com/MishaLazutkin/Mintness/tree/main/lib/models/api_responses/current_timer_response.dart
https://raw.githubusercontent.com/MishaLazutkin/Mintness/8668720/lib/models/api_responses/current_timer_response.dart
MishaLazutkin/Mintness 8668720 lib/models/api_responses/current_timer_response.dart
true
200
864
import 'dart:convert'; import 'package:dio/dio.dart'; import 'package:meta/meta.dart'; import 'package:mintness/models/domain/current_timer.dart'; @immutable class CurrentTimerResponse { final CurrentTimer currentTimerResponse; const CurrentTimerResponse.success({@required this.currentTimerResponse}); const C...
3
OmarZoOoka/grad
13bdde3
lib/Components/flush_bar.dart
Dart
www.github.com/OmarZoOoka/grad/tree/main/lib/Components/flush_bar.dart
https://raw.githubusercontent.com/OmarZoOoka/grad/13bdde3/lib/Components/flush_bar.dart
OmarZoOoka/grad 13bdde3 lib/Components/flush_bar.dart
true
200
1,351
import 'package:another_flushbar/flushbar.dart'; import 'package:flutter/material.dart'; import 'package:graduation_project/services/navigation_service.dart'; showFlushBar( String title, { bool isError = true, }) { Column( children: [ Flushbar( message: title, messageText: Text( ...
6
Zoyidov/fake_api
41f4651
lib/data/network/repositories/user_repo.dart
Dart
www.github.com/Zoyidov/fake_api/tree/main/lib/data/network/repositories/user_repo.dart
https://raw.githubusercontent.com/Zoyidov/fake_api/41f4651/lib/data/network/repositories/user_repo.dart
Zoyidov/fake_api 41f4651 lib/data/network/repositories/user_repo.dart
true
200
612
import 'package:n8_default_project/data/models/universal_model.dart'; import 'package:n8_default_project/data/models/user/user_model.dart'; import 'package:n8_default_project/data/network/providers/api_provider.dart'; class UserRepo { UserRepo({required this.apiProvider}); final ApiProvider apiProvider; Future...
0
Aswar12/Antarkanmaapp
d8c7f78
lib/app/data/models/product_gallery_model.dart
Dart
www.github.com/Aswar12/Antarkanmaapp/tree/main/lib/app/data/models/product_gallery_model.dart
https://raw.githubusercontent.com/Aswar12/Antarkanmaapp/d8c7f78/lib/app/data/models/product_gallery_model.dart
Aswar12/Antarkanmaapp d8c7f78 lib/app/data/models/product_gallery_model.dart
true
200
2,050
// lib/app/data/models/product_gallery_model.dart class ProductGalleryModel { final int? id; final int productId; final String url; final DateTime? createdAt; final DateTime? updatedAt; final DateTime? deletedAt; ProductGalleryModel({ this.id, required this.productId, required this.url, ...
2
Talha182/lhw
7311270
lib/CourseTabbar/total_courses.dart
Dart
www.github.com/Talha182/lhw/tree/main/lib/CourseTabbar/total_courses.dart
https://raw.githubusercontent.com/Talha182/lhw/7311270/lib/CourseTabbar/total_courses.dart
Talha182/lhw 7311270 lib/CourseTabbar/total_courses.dart
true
200
6,342
import 'dart:async'; import 'package:animated_text_kit/animated_text_kit.dart'; import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import 'package:provider/provider.dart'; import '../Presentation/Presentation.dart'; import 'courses_card.dart'; import 'course_provider.dart'; class TotalCou...
7
scarnett/defender
e038f37
lib/app/widgets/app_error.dart
Dart
www.github.com/scarnett/defender/tree/main/lib/app/widgets/app_error.dart
https://raw.githubusercontent.com/scarnett/defender/e038f37/lib/app/widgets/app_error.dart
scarnett/defender e038f37 lib/app/widgets/app_error.dart
true
200
446
import 'package:flutter/material.dart'; class AppError extends StatelessWidget { final Color iconColor; final double iconSize; const AppError({ Key? key, this.iconColor = Colors.red, this.iconSize = 100.0, }) : super(key: key); @override Widget build( BuildContext context, ) => Ce...
5
florentianayuwono/LiteUp
81b7006
lite_up/lib/models/db_connect.dart
Dart
www.github.com/florentianayuwono/LiteUp/tree/main/lite_up/lib/models/db_connect.dart
https://raw.githubusercontent.com/florentianayuwono/LiteUp/81b7006/lite_up/lib/models/db_connect.dart
florentianayuwono/LiteUp 81b7006 lite_up/lib/models/db_connect.dart
true
200
662
import 'package:http/http.dart' as http; import './level_model.dart'; import './book_model.dart'; import './flashcard_model.dart'; import 'dart:convert'; class DBconnect { final url = Uri.parse( 'https://liteup-3380e-default-rtdb.asia-southeast1.firebasedatabase.app/'); Future<void> addLevel(Level level) asy...
4
vjloable/howl_and_seek
ba05be3
lib/data/player_repository.dart
Dart
www.github.com/vjloable/howl_and_seek/tree/main/lib/data/player_repository.dart
https://raw.githubusercontent.com/vjloable/howl_and_seek/ba05be3/lib/data/player_repository.dart
vjloable/howl_and_seek ba05be3 lib/data/player_repository.dart
true
200
3,147
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_database/firebase_database.dart'; import '../domain/player_model.dart'; final FirebaseFirestore _firebaseFirestore = FirebaseFirestore.instance; final FirebaseDatabase _firebaseRealtime = FirebaseDatabase.instance; class PlayerRepository ...
3
AliHizmetcii/eKitap_app
1a225f6
lib/userModel.dart
Dart
www.github.com/AliHizmetcii/eKitap_app/tree/main/lib/userModel.dart
https://raw.githubusercontent.com/AliHizmetcii/eKitap_app/1a225f6/lib/userModel.dart
AliHizmetcii/eKitap_app 1a225f6 lib/userModel.dart
true
200
924
import 'dart:convert'; import 'package:ekitap/SaveCookie.dart'; import 'package:ekitap/userModel.dart'; import 'package:flutter_session_manager/flutter_session_manager.dart'; class appCacheData { static appCacheData value = appCacheData(username: "", cookie: ""); late String username; late String cookie; app...
6
Saliya99/rock_vin_cafe_app
0e42f64
rock_vin_cafe_app/lib/widgets/app_icon.dart
Dart
www.github.com/Saliya99/rock_vin_cafe_app/tree/main/rock_vin_cafe_app/lib/widgets/app_icon.dart
https://raw.githubusercontent.com/Saliya99/rock_vin_cafe_app/0e42f64/rock_vin_cafe_app/lib/widgets/app_icon.dart
Saliya99/rock_vin_cafe_app 0e42f64 rock_vin_cafe_app/lib/widgets/app_icon.dart
true
200
929
import 'package:flutter/material.dart'; import 'package:flutter/src/widgets/framework.dart'; import 'package:flutter/src/widgets/placeholder.dart'; import 'package:rock_vin_cafe_app/utils/dimensions.dart'; class AppIcon extends StatelessWidget { final IconData icon; final Color backgroundColor; final Color iconC...
1
swarupreddy733789/SwiftPay_UI
4d9b249
lib/quick_send_money.dart
Dart
www.github.com/swarupreddy733789/SwiftPay_UI/tree/main/lib/quick_send_money.dart
https://raw.githubusercontent.com/swarupreddy733789/SwiftPay_UI/4d9b249/lib/quick_send_money.dart
swarupreddy733789/SwiftPay_UI 4d9b249 lib/quick_send_money.dart
true
200
6,830
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:SwiftPay/glassmorphism.dart'; import 'package:SwiftPay/pin.dart'; class QuickSendMoney extends StatefulWidget { final String name, account; const QuickSendMoney({super.key, required this.name, required this.account}); ...
0
Ashhad08/tailor_app
2b67fd3
lib/presentation/elements/review_tile.dart
Dart
www.github.com/Ashhad08/tailor_app/tree/main/lib/presentation/elements/review_tile.dart
https://raw.githubusercontent.com/Ashhad08/tailor_app/2b67fd3/lib/presentation/elements/review_tile.dart
Ashhad08/tailor_app 2b67fd3 lib/presentation/elements/review_tile.dart
true
200
1,597
import 'package:flutter/material.dart'; class ReviewTile extends StatelessWidget { const ReviewTile({ Key? key, }) : super(key: key); @override Widget build(BuildContext context) { return Column( children: [ ListTile( contentPadding: EdgeInsets.zero, leading: CircleAv...
7
adislice/absensi-app
14547df
lib/models/login_response.dart
Dart
www.github.com/adislice/absensi-app/tree/main/lib/models/login_response.dart
https://raw.githubusercontent.com/adislice/absensi-app/14547df/lib/models/login_response.dart
adislice/absensi-app 14547df lib/models/login_response.dart
true
200
1,217
class LoginResponse { int? id; String? nama; String? nis; String? tempatLahir; String? tanggalLahir; String? rememberToken; String? token; String? createdAt; String? updatedAt; LoginResponse( {this.id, this.nama, this.nis, this.tempatLahir, this.tanggalLahir, thi...
2
Aryan-Lohia/WorldTime-App
b21a168
lib/notficationsController.dart
Dart
www.github.com/Aryan-Lohia/WorldTime-App/tree/main/lib/notficationsController.dart
https://raw.githubusercontent.com/Aryan-Lohia/WorldTime-App/b21a168/lib/notficationsController.dart
Aryan-Lohia/WorldTime-App b21a168 lib/notficationsController.dart
true
200
2,364
import 'dart:async'; import 'package:flutter_local_notifications/flutter_local_notifications.dart'; import 'package:intl/intl.dart'; import 'package:worldtime_app/_defaultsettings.dart'; import 'package:flutter_tts/flutter_tts.dart'; class NotificationsController { final FlutterLocalNotificationsPlugin flutte...
4
porter-sh/todo_tiles
bf03a57
frontend/lib/page_selector.dart
Dart
www.github.com/porter-sh/todo_tiles/tree/main/frontend/lib/page_selector.dart
https://raw.githubusercontent.com/porter-sh/todo_tiles/bf03a57/frontend/lib/page_selector.dart
porter-sh/todo_tiles bf03a57 frontend/lib/page_selector.dart
true
200
2,849
/// This file contains the code that creates the layout of the app. It has a /// bottom navigation bar and a floating action button to add new tasks. import 'package:flutter/material.dart'; import 'package:flutter_expandable_fab/flutter_expandable_fab.dart'; import 'pages/friends.dart'; import 'pages/history.dart'; i...
5
pislm/jobfindr_mobile
dcbbbdc
lib/data/jobfindr_repository.dart
Dart
www.github.com/pislm/jobfindr_mobile/tree/main/lib/data/jobfindr_repository.dart
https://raw.githubusercontent.com/pislm/jobfindr_mobile/dcbbbdc/lib/data/jobfindr_repository.dart
pislm/jobfindr_mobile dcbbbdc lib/data/jobfindr_repository.dart
true
200
789
import 'package:dio/dio.dart'; import 'package:jobfindr_mobile/data/model/get_jobs_response.dart'; import 'package:jobfindr_mobile/data/model/job_filter.dart'; import 'package:jobfindr_mobile/data/model/job_model.dart'; class JobFindrRepository { final Dio _dio; JobFindrRepository(this._dio); Future<List<JobMo...
3
jyun19980812/Anabada
b9794d7
anabada/lib/login/find_email.dart
Dart
www.github.com/jyun19980812/Anabada/tree/main/anabada/lib/login/find_email.dart
https://raw.githubusercontent.com/jyun19980812/Anabada/b9794d7/anabada/lib/login/find_email.dart
jyun19980812/Anabada b9794d7 anabada/lib/login/find_email.dart
true
200
6,338
import 'package:flutter/material.dart'; import 'package:auto_size_text/auto_size_text.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:provider/provider.dart'; import '../settings/font_size_provider.dart'; import 'login.dart'; import 'find_password.dart'; class FindIdScreen extends Statefu...
6
tahaboud/goasbar_app
b550301
lib/ui/widgets/close_view.dart
Dart
www.github.com/tahaboud/goasbar_app/tree/main/lib/ui/widgets/close_view.dart
https://raw.githubusercontent.com/tahaboud/goasbar_app/b550301/lib/ui/widgets/close_view.dart
tahaboud/goasbar_app b550301 lib/ui/widgets/close_view.dart
true
200
728
import 'package:flutter/material.dart'; import 'package:styled_widget/styled_widget.dart'; class CloseView extends StatelessWidget { const CloseView({super.key, this.onTap}); final void Function()? onTap; @override Widget build(BuildContext context) { return Container( decoration: BoxDecoration( ...
1
marktfaust/Dicey-Flutter
1428c86
lib/main.dart
Dart
www.github.com/marktfaust/Dicey-Flutter/tree/main/lib/main.dart
https://raw.githubusercontent.com/marktfaust/Dicey-Flutter/1428c86/lib/main.dart
marktfaust/Dicey-Flutter 1428c86 lib/main.dart
true
200
1,436
import 'package:flutter/material.dart'; import 'dart:math'; void main() { return runApp( MaterialApp( home: Scaffold( backgroundColor: Colors.red, appBar: AppBar( title: Text('Dicey'), backgroundColor: Colors.red, ), body: DicePage(), ), ), );...
0
techforimpact/Restaurant-SuperAdminapp-Flutter
564db7f
lib/pages/reviews/dialog.dart
Dart
www.github.com/techforimpact/Restaurant-SuperAdminapp-Flutter/tree/main/lib/pages/reviews/dialog.dart
https://raw.githubusercontent.com/techforimpact/Restaurant-SuperAdminapp-Flutter/564db7f/lib/pages/reviews/dialog.dart
techforimpact/Restaurant-SuperAdminapp-Flutter 564db7f lib/pages/reviews/dialog.dart
true
200
4,654
// ignore_for_file: prefer_const_constructors import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; import '../../constants.dart'; import '../../constants/style.dart'; import '../../models/review.dart'; import '../../utils/global.dart'; class ViewReview extends StatefulWidget...
7
KiraResari/ceal-chronicler-f
9fa97e9
lib/view/templates/overview_view_template.dart
Dart
www.github.com/KiraResari/ceal-chronicler-f/tree/main/lib/view/templates/overview_view_template.dart
https://raw.githubusercontent.com/KiraResari/ceal-chronicler-f/9fa97e9/lib/view/templates/overview_view_template.dart
KiraResari/ceal-chronicler-f 9fa97e9 lib/view/templates/overview_view_template.dart
true
200
579
import '../../main_view/main_view_candidate.dart'; import '../../overview_view/overview_view.dart'; import 'main_view_template.dart'; class OverviewViewTemplate extends MainViewTemplate { @override MainViewCandidate get associatedView => const OverviewView(); @override bool get isValid => true; ...
2
aluth313/news-api-luthfi
e6940e1
lib/bloc/news_bloc.dart
Dart
www.github.com/aluth313/news-api-luthfi/tree/main/lib/bloc/news_bloc.dart
https://raw.githubusercontent.com/aluth313/news-api-luthfi/e6940e1/lib/bloc/news_bloc.dart
aluth313/news-api-luthfi e6940e1 lib/bloc/news_bloc.dart
true
200
1,153
import 'package:bloc/bloc.dart'; import 'package:meta/meta.dart'; import 'package:news_app_luthfi/models/article.dart'; import 'package:news_app_luthfi/services/news_services.dart'; part 'news_event.dart'; part 'news_state.dart'; class NewsBloc extends Bloc<NewsEvent, NewsState> { final NewsServices _newsServices; ...
5
Parth-Dattani/calender
5de3dca
lib/syncfusion_calender_2/syncfusion_cal.dart
Dart
www.github.com/Parth-Dattani/calender/tree/main/lib/syncfusion_calender_2/syncfusion_cal.dart
https://raw.githubusercontent.com/Parth-Dattani/calender/5de3dca/lib/syncfusion_calender_2/syncfusion_cal.dart
Parth-Dattani/calender 5de3dca lib/syncfusion_calender_2/syncfusion_cal.dart
true
200
14,168
import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import 'package:syncfusion_flutter_calendar/calendar.dart'; import 'package:syncfusion_flutter_datepicker/datepicker.dart'; import 'meeting_data_source.dart'; import 'meetting.dart'; class SyncfusionCal extends StatefulWi...
4
ThachSangW3G/kcpm_cooking_social
cde6134
lib/widgets/icon_content.dart
Dart
www.github.com/ThachSangW3G/kcpm_cooking_social/tree/main/lib/widgets/icon_content.dart
https://raw.githubusercontent.com/ThachSangW3G/kcpm_cooking_social/cde6134/lib/widgets/icon_content.dart
ThachSangW3G/kcpm_cooking_social cde6134 lib/widgets/icon_content.dart
true
200
890
import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import '../constants/app_styles.dart'; class IconContent extends StatelessWidget { final String label; final String iconData; final VoidCallback onTap; const IconContent( {super.key, required this.label, requ...
3
DjonatanWillenz/api-pisicultura
5d9bed7
mobile/lib/app/modules/installation/installation.controller.dart
Dart
www.github.com/DjonatanWillenz/api-pisicultura/tree/main/mobile/lib/app/modules/installation/installation.controller.dart
https://raw.githubusercontent.com/DjonatanWillenz/api-pisicultura/5d9bed7/mobile/lib/app/modules/installation/installation.controller.dart
DjonatanWillenz/api-pisicultura 5d9bed7 mobile/lib/app/modules/installation/installation.controller.dart
true
200
744
import 'package:app/app/data/model/installation.model.dart'; import 'package:app/app/data/repository/installation.repository.dart'; import 'package:app/app/global/singletons/setings.system.dart'; import 'package:get/get.dart'; class InstallationController extends GetxController { final repositoty = Get.find<Installa...
6
StandardTouch/shaheen_selfie
2019675
lib/utils/services/api_service.dart
Dart
www.github.com/StandardTouch/shaheen_selfie/tree/main/lib/utils/services/api_service.dart
https://raw.githubusercontent.com/StandardTouch/shaheen_selfie/2019675/lib/utils/services/api_service.dart
StandardTouch/shaheen_selfie 2019675 lib/utils/services/api_service.dart
true
200
3,299
import 'dart:io'; import 'package:dio/dio.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:shaheen_selfie/utils/config/logger.dart'; import 'package:shaheen_selfie/utils/constants/constants.dart'; import 'dart:math'; import 'package:intl/intl.dart'; // add interceptor to dio for last "/" cl...
1
abdurrahmanabdullah/getx_islamic_app
d567159
lib/app/modules/user_api/views/user_api_view.dart
Dart
www.github.com/abdurrahmanabdullah/getx_islamic_app/tree/main/lib/app/modules/user_api/views/user_api_view.dart
https://raw.githubusercontent.com/abdurrahmanabdullah/getx_islamic_app/d567159/lib/app/modules/user_api/views/user_api_view.dart
abdurrahmanabdullah/getx_islamic_app d567159 lib/app/modules/user_api/views/user_api_view.dart
true
200
793
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../controllers/user_api_controller.dart'; class UserApiView extends GetView<ApiController> { const UserApiView({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: con...
0
progmaksudur/expensesAssignment
c353a30
lib/page/view/CreateAccount/create_account_desktop.dart
Dart
www.github.com/progmaksudur/expensesAssignment/tree/main/lib/page/view/CreateAccount/create_account_desktop.dart
https://raw.githubusercontent.com/progmaksudur/expensesAssignment/c353a30/lib/page/view/CreateAccount/create_account_desktop.dart
progmaksudur/expensesAssignment c353a30 lib/page/view/CreateAccount/create_account_desktop.dart
true
200
7,452
import 'package:expances_tracker/page/view/LogIN/log_in_page.dart'; import 'package:expances_tracker/provider/expenses_app_provider.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import '../../../main.dart'; class CreateAccoun...
7
LeoGabrields/delivery-web
d7cd40d
delivery_backoffice_dw10/lib/main.dart
Dart
www.github.com/LeoGabrields/delivery-web/tree/main/delivery_backoffice_dw10/lib/main.dart
https://raw.githubusercontent.com/LeoGabrields/delivery-web/d7cd40d/delivery_backoffice_dw10/lib/main.dart
LeoGabrields/delivery-web d7cd40d delivery_backoffice_dw10/lib/main.dart
true
200
375
import 'package:flutter/widgets.dart'; import 'package:flutter_modular/flutter_modular.dart'; import 'src/app_module.dart'; import 'src/app_widget.dart'; import 'src/core/env/env.dart'; void main() async { WidgetsFlutterBinding.ensureInitialized(); await Env.instance.load(); runApp( ModularApp( module:...
2
Petya2603/dizzy_admin
ff6dea6
lib/Screens/home/home_view.dart
Dart
www.github.com/Petya2603/dizzy_admin/tree/main/lib/Screens/home/home_view.dart
https://raw.githubusercontent.com/Petya2603/dizzy_admin/ff6dea6/lib/Screens/home/home_view.dart
Petya2603/dizzy_admin ff6dea6 lib/Screens/home/home_view.dart
true
200
4,653
import 'dart:io'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:dizzy_admin/screens/home/home_widgets/home_appBar.dart'; import 'package:dizzy_admin/screens/home/home_widgets/home_controller/home_controller.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '...
5
novanalveno2001/tugasakhir
bc5d7c4
lib/users/beranda.dart
Dart
www.github.com/novanalveno2001/tugasakhir/tree/main/lib/users/beranda.dart
https://raw.githubusercontent.com/novanalveno2001/tugasakhir/bc5d7c4/lib/users/beranda.dart
novanalveno2001/tugasakhir bc5d7c4 lib/users/beranda.dart
true
200
5,664
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:tugasakhir/menu_drawer.dart'; import 'package:tugasakhir/data.dart'; import 'package:tugasakhir/favorit/favorite_list_models.dart'; import 'package:tugasakhir/search_bar/searchbar.dart'; class Beranda extends StatefulWidge...
4
orley12/studious-doodle
ead0e28
lib/home/widget/home_app_bar.dart
Dart
www.github.com/orley12/studious-doodle/tree/main/lib/home/widget/home_app_bar.dart
https://raw.githubusercontent.com/orley12/studious-doodle/ead0e28/lib/home/widget/home_app_bar.dart
orley12/studious-doodle ead0e28 lib/home/widget/home_app_bar.dart
true
200
2,423
import 'package:flutter/material.dart'; import 'package:real_estate_app/resources/dimens.dart'; import '../../common/widget/circular_image.dart'; import '../../common/widget/text_field.dart'; import '../../resources/images.dart'; class HomeAppBar extends PreferredSize { final double opacityLevel; final AnimationC...
3
miswan/twappp
5f75fe3
lib/presentation/profile_page/widgets/postlist1_item_widget.dart
Dart
www.github.com/miswan/twappp/tree/main/lib/presentation/profile_page/widgets/postlist1_item_widget.dart
https://raw.githubusercontent.com/miswan/twappp/5f75fe3/lib/presentation/profile_page/widgets/postlist1_item_widget.dart
miswan/twappp 5f75fe3 lib/presentation/profile_page/widgets/postlist1_item_widget.dart
true
200
3,907
import 'package:flutter/material.dart'; import '../../../core/app_export.dart'; import '../models/postlist1_item_model.dart'; class Postlist1ItemWidget extends StatelessWidget { final Postlist1ItemModel postlist1ItemModelObj; const Postlist1ItemWidget(this.postlist1ItemModelObj, {Key? key}) : super(key: key...
1
xabierun/dog_search
bda9ff5
lib/shared/helper/size_config.dart
Dart
www.github.com/xabierun/dog_search/tree/main/lib/shared/helper/size_config.dart
https://raw.githubusercontent.com/xabierun/dog_search/bda9ff5/lib/shared/helper/size_config.dart
xabierun/dog_search bda9ff5 lib/shared/helper/size_config.dart
true
200
1,484
import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; /// 画面サイズを取得するためのHelper class SizeConfig { late MediaQueryData? _mediaQueryData; late double? _safeAreaHorizontal; late double? _safeAreaVertical; /// 画面の横幅(ピクセル単位) static double? screenWidth; /// 画面の縦幅(ピクセル単位) static doub...
0
XainMuhammadKhan/Fitjorn-Flutter
573e5f5
lib/viewmodel/firebase/profilef_view_model.dart
Dart
www.github.com/XainMuhammadKhan/Fitjorn-Flutter/tree/main/lib/viewmodel/firebase/profilef_view_model.dart
https://raw.githubusercontent.com/XainMuhammadKhan/Fitjorn-Flutter/573e5f5/lib/viewmodel/firebase/profilef_view_model.dart
XainMuhammadKhan/Fitjorn-Flutter 573e5f5 lib/viewmodel/firebase/profilef_view_model.dart
true
200
1,172
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_auth/firebase_auth.dart'; class ProfileFViewModel { final FirebaseFirestore _firestore = FirebaseFirestore.instance; final FirebaseAuth _auth = FirebaseAuth.instance; Future<Map<String, dynamic>> getUserProfile() async { String?...
7
mohamedimem/online-shop-master
40a03ff
lib/models/cart_model.dart
Dart
www.github.com/mohamedimem/online-shop-master/tree/main/lib/models/cart_model.dart
https://raw.githubusercontent.com/mohamedimem/online-shop-master/40a03ff/lib/models/cart_model.dart
mohamedimem/online-shop-master 40a03ff lib/models/cart_model.dart
true
200
703
import 'package:equatable/equatable.dart'; import 'package:online_shop/models/product_model.dart'; class Cart extends Equatable { final List<Product> products; const Cart({this.products = const <Product>[]}); Map productQuantity(products) { var quantity = Map(); products.forEach((product) { if ...
2
Sa3diDeveloper/Dart-Programming
1a2e1b3
Dart_Programs/garde1.dart
Dart
www.github.com/Sa3diDeveloper/Dart-Programming/tree/main/Dart_Programs/garde1.dart
https://raw.githubusercontent.com/Sa3diDeveloper/Dart-Programming/1a2e1b3/Dart_Programs/garde1.dart
Sa3diDeveloper/Dart-Programming 1a2e1b3 Dart_Programs/garde1.dart
true
200
415
import 'dart:io'; void main() { int garde = 0, sum = 0; for (int i = 0; i < 3; i++) { if (i == 0) print("English"); do { print("Enter Number ${i}"); garde = int.parse(stdin.readLineSync()!); if (garde < 1 || 5 > garde == true) { print("Incorrect Number Try Agian.");...
6
ahmiidmoali/Ecommerce-App-
c2946df
lib/view/screen/auth/forgetpassword/successresetpassword.dart
Dart
www.github.com/ahmiidmoali/Ecommerce-App-/tree/main/lib/view/screen/auth/forgetpassword/successresetpassword.dart
https://raw.githubusercontent.com/ahmiidmoali/Ecommerce-App-/c2946df/lib/view/screen/auth/forgetpassword/successresetpassword.dart
ahmiidmoali/Ecommerce-App- c2946df lib/view/screen/auth/forgetpassword/successresetpassword.dart
true
200
1,885
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:project33/core/constant/appcolor.dart'; import 'package:project33/view/widget/auth/customtextbodyauth.dart'; import 'package:project33/view/widget/auth/customtexttitleauth.dart'; import '../../../../controller/auth/forgetpassword/suc...
4
davidjeffrey058/Techwise
f43377a
lib/Views/pages/profile_page_screens/vouchers/vouchers.dart
Dart
www.github.com/davidjeffrey058/Techwise/tree/main/lib/Views/pages/profile_page_screens/vouchers/vouchers.dart
https://raw.githubusercontent.com/davidjeffrey058/Techwise/f43377a/lib/Views/pages/profile_page_screens/vouchers/vouchers.dart
davidjeffrey058/Techwise f43377a lib/Views/pages/profile_page_screens/vouchers/vouchers.dart
true
200
1,031
import 'package:flutter/material.dart'; import 'package:techwise_pub/Views/pages/profile_page_screens/vouchers/active_or_inactive.dart'; class Vouchers extends StatefulWidget{ @override State<Vouchers> createState() => _VoucherState(); } late TabController tabController; class _VoucherState extends State<Vouchers...
5
fardz2/mobile-penyakit
8ab87d8
lib/app/modules/login/views/login_view.dart
Dart
www.github.com/fardz2/mobile-penyakit/tree/main/lib/app/modules/login/views/login_view.dart
https://raw.githubusercontent.com/fardz2/mobile-penyakit/8ab87d8/lib/app/modules/login/views/login_view.dart
fardz2/mobile-penyakit 8ab87d8 lib/app/modules/login/views/login_view.dart
true
200
2,988
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:heartrate_database_u_i/component/layouts/auth/login.dart'; import 'package:heartrate_database_u_i/component/layouts/auth/signup.dart'; import 'package:heartrate_database_u_i/component/ui/button_back.dart'; import 'package:heartrate_d...
3
Ahmad-Nour-Haidar/pharmageddon-web
ae1c8f0
lib/controllers/add_cubit/add_cubit.dart
Dart
www.github.com/Ahmad-Nour-Haidar/pharmageddon-web/tree/main/lib/controllers/add_cubit/add_cubit.dart
https://raw.githubusercontent.com/Ahmad-Nour-Haidar/pharmageddon-web/ae1c8f0/lib/controllers/add_cubit/add_cubit.dart
Ahmad-Nour-Haidar/pharmageddon-web ae1c8f0 lib/controllers/add_cubit/add_cubit.dart
true
200
6,167
import 'dart:io'; import 'package:flutter/cupertino.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:get/get.dart'; import 'package:pharmageddon_web/controllers/add_cubit/add_state.dart'; import 'package:pharmageddon_web/core/functions/functions.dart'; import 'package:pharmageddon_web/core/servi...
1
HyperactiveDuck/uafw
9cbcd98
lib/pages/tetris_controls_guilde.dart
Dart
www.github.com/HyperactiveDuck/uafw/tree/main/lib/pages/tetris_controls_guilde.dart
https://raw.githubusercontent.com/HyperactiveDuck/uafw/9cbcd98/lib/pages/tetris_controls_guilde.dart
HyperactiveDuck/uafw 9cbcd98 lib/pages/tetris_controls_guilde.dart
true
200
2,800
import 'package:flutter/material.dart'; import 'package:page_transition/page_transition.dart'; import 'package:uafw/tetris.dart'; class TetrisController extends StatefulWidget { const TetrisController({super.key}); @override State<TetrisController> createState() => TetrisControllerState(); } class TetrisContr...
7
MahmoudTarraf/Train_Booking_App
6e381d7
lib/widgets/full_name.dart
Dart
www.github.com/MahmoudTarraf/Train_Booking_App/tree/main/lib/widgets/full_name.dart
https://raw.githubusercontent.com/MahmoudTarraf/Train_Booking_App/6e381d7/lib/widgets/full_name.dart
MahmoudTarraf/Train_Booking_App 6e381d7 lib/widgets/full_name.dart
true
200
1,370
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; // ignore: must_be_immutable class FullName extends StatelessWidget { List<String> nameList = []; final Function dullNameHandler; FullName({super.key, required this.dullNameHandler}); String _fullName = ''; Widget _checkFullName(...
2
ayalcoh/led-matrix-control
064256e
lib/features/dashboard/screens/dashboard_screen.dart
Dart
www.github.com/ayalcoh/led-matrix-control/tree/main/lib/features/dashboard/screens/dashboard_screen.dart
https://raw.githubusercontent.com/ayalcoh/led-matrix-control/064256e/lib/features/dashboard/screens/dashboard_screen.dart
ayalcoh/led-matrix-control 064256e lib/features/dashboard/screens/dashboard_screen.dart
true
200
312
// lib/features/dashboard/screens/dashboard_screen.dart import 'package:flutter/material.dart'; class DashboardScreen extends StatelessWidget { const DashboardScreen({super.key}); @override Widget build(BuildContext context) { return const Center( child: Text('Dashboard Screen'), ); } }
0
Umar888/customer360
91e972c
lib/utils/enums/music_instrument_enum.dart
Dart
www.github.com/Umar888/customer360/tree/main/lib/utils/enums/music_instrument_enum.dart
https://raw.githubusercontent.com/Umar888/customer360/91e972c/lib/utils/enums/music_instrument_enum.dart
Umar888/customer360 91e972c lib/utils/enums/music_instrument_enum.dart
true
200
3,856
import 'package:gc_customer_app/primitives/music_icons_system.dart'; enum MusicInstrumentEnum { acousticGuitar, bassGuitar, bassoon, brass, cello, clarinet, doubleBass, drumKit, electricGuitar, flute, marchingPercussion, oboe, orchestral, saxophone, trombone, trumpet, tuba, viola, ...
4
nguyenduong9799/beanoi-mobile
89f881b
lib/Model/DTO/SupplierNoteDTO.dart
Dart
www.github.com/nguyenduong9799/beanoi-mobile/tree/main/lib/Model/DTO/SupplierNoteDTO.dart
https://raw.githubusercontent.com/nguyenduong9799/beanoi-mobile/89f881b/lib/Model/DTO/SupplierNoteDTO.dart
nguyenduong9799/beanoi-mobile 89f881b lib/Model/DTO/SupplierNoteDTO.dart
true
200
377
class SupplierNoteDTO { int supplierId; String content; SupplierNoteDTO({this.supplierId, this.content}); factory SupplierNoteDTO.fromJson(dynamic json){ return SupplierNoteDTO( supplierId: json["supplier_id"], content: json["content"] ); } Map<String, dynamic> toJson() { retu...
6
burakpekisik/ME_Barcode_Rebuilt
449a1e6
lib/home.dart
Dart
www.github.com/burakpekisik/ME_Barcode_Rebuilt/tree/main/lib/home.dart
https://raw.githubusercontent.com/burakpekisik/ME_Barcode_Rebuilt/449a1e6/lib/home.dart
burakpekisik/ME_Barcode_Rebuilt 449a1e6 lib/home.dart
true
200
13,502
import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:me_barcode_flutter/screens/BarcodeScreen.dart'; import 'package:me_barcode_flutter/screens/CustomerListScreen.dart'; import 'package:me_barcode_flutter/screens/EnvelopeCr...
5
Ahmedshiref72/pet_care
607f817
lib/src/models/getCartItem.dart
Dart
www.github.com/Ahmedshiref72/pet_care/tree/main/lib/src/models/getCartItem.dart
https://raw.githubusercontent.com/Ahmedshiref72/pet_care/607f817/lib/src/models/getCartItem.dart
Ahmedshiref72/pet_care 607f817 lib/src/models/getCartItem.dart
true
200
1,993
class GetCartModel { String? responseCode; String? message; List<Cart>? cart; String? cartTotal; String? totalItems; String? status; GetCartModel( {this.responseCode, this.message, this.cart, this.cartTotal, this.totalItems, this.status}); GetCartModel.fromJson(Map<...
3
yetitechnepal/rentall_partners
1f6a780
lib/Screens/Account/PopUps/address_edit_popup.dart
Dart
www.github.com/yetitechnepal/rentall_partners/tree/main/lib/Screens/Account/PopUps/address_edit_popup.dart
https://raw.githubusercontent.com/yetitechnepal/rentall_partners/1f6a780/lib/Screens/Account/PopUps/address_edit_popup.dart
yetitechnepal/rentall_partners 1f6a780 lib/Screens/Account/PopUps/address_edit_popup.dart
true
200
5,381
// ignore_for_file: body_might_complete_normally_nullable import 'package:flutter/material.dart'; import 'package:loader_overlay/loader_overlay.dart'; import 'package:rental_partners/Blocs/profile_bloc.dart'; import 'package:rental_partners/Utils/image_icon.dart'; import 'package:rental_partners/Utils/loading_widget.d...
2
waihanko/mm_operator_detector
b72596b
lib/mm_operator_detector.dart
Dart
www.github.com/waihanko/mm_operator_detector/tree/main/lib/mm_operator_detector.dart
https://raw.githubusercontent.com/waihanko/mm_operator_detector/b72596b/lib/mm_operator_detector.dart
waihanko/mm_operator_detector b72596b lib/mm_operator_detector.dart
true
200
4,234
library mm_operator_detector; enum TelecomOperator { ooredoo, atom, mpt, mec, mytel, unknown, } enum NetworkType { gsm, wcdma, cdma450, cdma800, unknown, } class MMOperatorDetector { static const Map<String, int> _myanmarNumbers = { "၀": 0, "၁": 1, "၂": 2, "၃": 3, "၄": 4,...
0
mihir1570/-Food-Delivery-App
7a7c94f
lib/routes/route_helper.dart
Dart
www.github.com/mihir1570/-Food-Delivery-App/tree/main/lib/routes/route_helper.dart
https://raw.githubusercontent.com/mihir1570/-Food-Delivery-App/7a7c94f/lib/routes/route_helper.dart
mihir1570/-Food-Delivery-App 7a7c94f lib/routes/route_helper.dart
true
200
3,424
import 'package:flutter_app/models/order_model.dart'; import 'package:flutter_app/pages/address/pick_address_map.dart'; import 'package:flutter_app/pages/auth/sign_in_page.dart'; import 'package:flutter_app/pages/food/popular_food_detail.dart'; import 'package:flutter_app/pages/home/home_page.dart'; import 'package:flu...
6
menna-adel10/Bookly
92cd03a
lib/Features/home/data/repos/home_repo_implementation.dart
Dart
www.github.com/menna-adel10/Bookly/tree/main/lib/Features/home/data/repos/home_repo_implementation.dart
https://raw.githubusercontent.com/menna-adel10/Bookly/92cd03a/lib/Features/home/data/repos/home_repo_implementation.dart
menna-adel10/Bookly 92cd03a lib/Features/home/data/repos/home_repo_implementation.dart
true
200
3,165
import 'package:bookly/Features/home/data/data_sources/home_local_data_source.dart'; import 'package:bookly/Features/home/data/data_sources/home_remote_data_source.dart'; import 'package:bookly/core/errors/failures.dart'; import 'package:dartz/dartz.dart'; import '../../domain/entities/HomeRepo.dart'; import '../../dom...
4
Kevinkiron/VideoPlayer
7595cba
lib/app/modules/home/controllers/home_controller.dart
Dart
www.github.com/Kevinkiron/VideoPlayer/tree/main/lib/app/modules/home/controllers/home_controller.dart
https://raw.githubusercontent.com/Kevinkiron/VideoPlayer/7595cba/lib/app/modules/home/controllers/home_controller.dart
Kevinkiron/VideoPlayer 7595cba lib/app/modules/home/controllers/home_controller.dart
true
200
588
import 'package:get/get.dart'; import 'package:youtube_player_flutter/youtube_player_flutter.dart'; class HomeController extends GetxController { final String videoUrl = "https://www.youtube.com/watch?v=CMF3qeu7fHY"; late YoutubePlayerController videoController; @override void onInit() { videoPlayer(); ...
5
Zanh1852/AppSoundtify
095892b
lib/core/navigation/navigator.dart
Dart
www.github.com/Zanh1852/AppSoundtify/tree/main/lib/core/navigation/navigator.dart
https://raw.githubusercontent.com/Zanh1852/AppSoundtify/095892b/lib/core/navigation/navigator.dart
Zanh1852/AppSoundtify 095892b lib/core/navigation/navigator.dart
true
200
4,347
import 'package:flutter/material.dart'; enum PushType { nomal, replace, replaceAll; } enum NavigatorAnimationType { fade, slide, scale, normal, rotate; Widget builder(BuildContext context, Animation<double> animation, Animation<double> secondaryAnimation, Widget child) { switch (...
3
cem256/valorant_universe_clean_arch
85414e8
lib/app/router/custom_route_observer.dart
Dart
www.github.com/cem256/valorant_universe_clean_arch/tree/main/lib/app/router/custom_route_observer.dart
https://raw.githubusercontent.com/cem256/valorant_universe_clean_arch/85414e8/lib/app/router/custom_route_observer.dart
cem256/valorant_universe_clean_arch 85414e8 lib/app/router/custom_route_observer.dart
true
200
1,828
// ignore_for_file: strict_raw_type import 'package:auto_route/auto_route.dart'; import 'package:flutter/material.dart'; import 'package:valorant_universe_remastered/core/utility/logger/logger_utils.dart'; /// Custom route observer that logs all route changes final class CustomRouteObserver extends AutoRouteObserver ...
7
xfbriianto/adfebriant-praktikum-layout
a0be331
lib/main.dart
Dart
www.github.com/xfbriianto/adfebriant-praktikum-layout/tree/main/lib/main.dart
https://raw.githubusercontent.com/xfbriianto/adfebriant-praktikum-layout/a0be331/lib/main.dart
xfbriianto/adfebriant-praktikum-layout a0be331 lib/main.dart
true
200
3,055
import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { Color color = Theme.of(context).primaryColor; Widget titleSection = Container( padding: const EdgeInsets...
1
PBL6-HandMadeShop/Mobile
227a83e
craftshop2/lib/common/widgets/texts/cs_brand_title_text.dart
Dart
www.github.com/PBL6-HandMadeShop/Mobile/tree/main/craftshop2/lib/common/widgets/texts/cs_brand_title_text.dart
https://raw.githubusercontent.com/PBL6-HandMadeShop/Mobile/227a83e/craftshop2/lib/common/widgets/texts/cs_brand_title_text.dart
PBL6-HandMadeShop/Mobile 227a83e craftshop2/lib/common/widgets/texts/cs_brand_title_text.dart
true
200
1,035
import 'package:flutter/material.dart'; import '../../../utils/constants/enums.dart'; class CSBrandTitleText extends StatelessWidget { const CSBrandTitleText({ super.key, this.color, required this.title, this.maxLines = 2, this.textAlign = TextAlign.left, this.brandTextSize = TextSizes.smal...
2
Dabrowski98/quote_master
b68d6f7
lib/quotes/services/quote_service.dart
Dart
www.github.com/Dabrowski98/quote_master/tree/main/lib/quotes/services/quote_service.dart
https://raw.githubusercontent.com/Dabrowski98/quote_master/b68d6f7/lib/quotes/services/quote_service.dart
Dabrowski98/quote_master b68d6f7 lib/quotes/services/quote_service.dart
true
200
560
import 'dart:convert'; import 'package:http/http.dart' as http; class QuoteService { String url = 'httHa://api.quotable.io/'; Future<Map<String, dynamic>> fetchQuotes({int pageNumber = 1}) async { final query = "quotes?limit=150&page=$pageNumber"; final response = await http.get(Uri.parse(url + query)); ...
0
mostfamhmd/Talky-App
3181133
lib/features/Auth/presentation/view/widgets/Auth Widgets/divider.dart
Dart
www.github.com/mostfamhmd/Talky-App/tree/main/lib/features/Auth/presentation/view/widgets/Auth Widgets/divider.dart
https://raw.githubusercontent.com/mostfamhmd/Talky-App/3181133/lib/features/Auth/presentation/view/widgets/Auth%20Widgets/divider.dart
mostfamhmd/Talky-App 3181133 lib/features/Auth/presentation/view/widgets/Auth Widgets/divider.dart
true
200
377
import 'package:chat_app/core/Utils/colors.dart'; import 'package:flutter/material.dart'; class CustomDivider extends StatelessWidget { const CustomDivider({super.key}); @override Widget build(BuildContext context) { return const Expanded( child: Divider( color: AppColor.kBlackLight, h...
4
real-Hafez/notes-app
5073ed4
lib/widgets/Custom_icon.dart
Dart
www.github.com/real-Hafez/notes-app/tree/main/lib/widgets/Custom_icon.dart
https://raw.githubusercontent.com/real-Hafez/notes-app/5073ed4/lib/widgets/Custom_icon.dart
real-Hafez/notes-app 5073ed4 lib/widgets/Custom_icon.dart
true
200
743
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; class custom_search_icon extends StatelessWidget { const custom_search_icon({super.key, required this.icon, this.onpressed}); final IconData icon; final void Function()? onpressed; @override ...
6
FaseehHayat21/MC-project
68ff074
LapShop_Ecommers_Flutter_firebase/flapshopadmin/lib/views/product_Screen/components/drop_down.dart
Dart
www.github.com/FaseehHayat21/MC-project/tree/main/LapShop_Ecommers_Flutter_firebase/flapshopadmin/lib/views/product_Screen/components/drop_down.dart
https://raw.githubusercontent.com/FaseehHayat21/MC-project/68ff074/LapShop_Ecommers_Flutter_firebase/flapshopadmin/lib/views/product_Screen/components/drop_down.dart
FaseehHayat21/MC-project 68ff074 LapShop_Ecommers_Flutter_firebase/flapshopadmin/lib/views/product_Screen/components/drop_down.dart
true
200
1,109
import 'package:flapshopadmin/const/const.dart'; import 'package:flapshopadmin/controller/products_controller.dart'; import 'package:flapshopadmin/views/widget/normal_text.dart'; import 'package:get/get.dart'; Widget productDropDown( hint, List<String> list, dropvalue, ProductController controller) { return Obx(...
5
BibiTalal/Project_Foodiez
6f018ff
lib/signed_in.dart
Dart
www.github.com/BibiTalal/Project_Foodiez/tree/main/lib/signed_in.dart
https://raw.githubusercontent.com/BibiTalal/Project_Foodiez/6f018ff/lib/signed_in.dart
BibiTalal/Project_Foodiez 6f018ff lib/signed_in.dart
true
200
3,566
import 'package:flutter/material.dart'; import 'package:foodiez/home_screen.dart'; import 'package:go_router/go_router.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:foodiez/reusable/widgets.dart'; class SignedIn extends StatelessWidget { const SignedIn({Key? key}) : super(key: key); st...
3
johndelson/oldHl5
f21b6ae
lib/profile/presentation/ui/pages/mobile_view_section/mobile_profile_timeline_section.dart
Dart
www.github.com/johndelson/oldHl5/tree/main/lib/profile/presentation/ui/pages/mobile_view_section/mobile_profile_timeline_section.dart
https://raw.githubusercontent.com/johndelson/oldHl5/f21b6ae/lib/profile/presentation/ui/pages/mobile_view_section/mobile_profile_timeline_section.dart
johndelson/oldHl5 f21b6ae lib/profile/presentation/ui/pages/mobile_view_section/mobile_profile_timeline_section.dart
true
200
15,884
import 'package:flutter/material.dart'; import 'package:flutter_html/flutter_html.dart'; import 'package:font_awesome_flutter/font_awesome_flutter.dart'; import 'package:holedo/models/models.dart'; import 'package:holedo/profile/presentation/ui/components/container_with_icon.dart'; import 'package:holedo/profile/presen...
7
DanielAdel-2107/Social-App
7bfc5dd
lib/helper/awesome_dialog.dart
Dart
www.github.com/DanielAdel-2107/Social-App/tree/main/lib/helper/awesome_dialog.dart
https://raw.githubusercontent.com/DanielAdel-2107/Social-App/7bfc5dd/lib/helper/awesome_dialog.dart
DanielAdel-2107/Social-App 7bfc5dd lib/helper/awesome_dialog.dart
true
200
968
import 'package:awesome_dialog/awesome_dialog.dart'; import 'package:flutter/material.dart'; AwesomeDialog dialog({ required BuildContext context, required String message, void Function()? btnOkOnPress, void Function()? btnCancelOnPress, String? btnOkText = 'Ok', String? btnCancelText = 'Cancel', DialogT...
1
antonioalberto-dev/Canario-fut
8c69271
lib/models/matches.dart
Dart
www.github.com/antonioalberto-dev/Canario-fut/tree/main/lib/models/matches.dart
https://raw.githubusercontent.com/antonioalberto-dev/Canario-fut/8c69271/lib/models/matches.dart
antonioalberto-dev/Canario-fut 8c69271 lib/models/matches.dart
true
200
6,037
class Matches { Area? area; Competition? competition; Season? season; int? id; String? utcDate; String? status; int? matchday; String? stage; String? lastUpdated; HomeTeam? homeTeam; HomeTeam? awayTeam; Score? score; Odds? odds; Matches( {this.area, this.competition, this....
2
gadhiyakeval163/flutter_assignment
5b3f69a
module.3/myscreen/lib/que11(2).dart
Dart
www.github.com/gadhiyakeval163/flutter_assignment/tree/main/module.3/myscreen/lib/que11(2).dart
https://raw.githubusercontent.com/gadhiyakeval163/flutter_assignment/5b3f69a/module.3/myscreen/lib/que11%282%29.dart
gadhiyakeval163/flutter_assignment 5b3f69a module.3/myscreen/lib/que11(2).dart
true
200
1,193
import 'package:flutter/material.dart'; class MyRegistrationScreen extends StatelessWidget { const MyRegistrationScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Registration'), ), body: Padding( padding...
0
mtaufikrama/MyPorto
dde3c25
lib/Homepage/info_kontak.dart
Dart
www.github.com/mtaufikrama/MyPorto/tree/main/lib/Homepage/info_kontak.dart
https://raw.githubusercontent.com/mtaufikrama/MyPorto/dde3c25/lib/Homepage/info_kontak.dart
mtaufikrama/MyPorto dde3c25 lib/Homepage/info_kontak.dart
true
200
1,611
import 'dart:io'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:lottie/lottie.dart'; import 'package:myporto/services.dart'; class InfoKontak extends StatelessWidget { const InfoKontak({ Key? key, required this.height, }) : super(key: key); final doubl...
4
Rashad-seada/Flutter_jobs_que
5f89ecf
lib/views/screens/14_edit_profile_screen.dart
Dart
www.github.com/Rashad-seada/Flutter_jobs_que/tree/main/lib/views/screens/14_edit_profile_screen.dart
https://raw.githubusercontent.com/Rashad-seada/Flutter_jobs_que/5f89ecf/lib/views/screens/14_edit_profile_screen.dart
Rashad-seada/Flutter_jobs_que 5f89ecf lib/views/screens/14_edit_profile_screen.dart
true
200
3,758
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:jobs_que/core/config/app_const.dart'; import 'package:jobs_que/core/config/app_strings.dart'; import 'package:jobs_que/views/widgets/custom_text_field.dart'; import 'package:jobs_que/views/widgets/main_back_button.d...
5
Prathamesh44gawade/Add_To_Cart_Flutter
75a3445
lib/cart_screen.dart
Dart
www.github.com/Prathamesh44gawade/Add_To_Cart_Flutter/tree/main/lib/cart_screen.dart
https://raw.githubusercontent.com/Prathamesh44gawade/Add_To_Cart_Flutter/75a3445/lib/cart_screen.dart
Prathamesh44gawade/Add_To_Cart_Flutter 75a3445 lib/cart_screen.dart
true
200
1,481
import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'cart_model.dart'; class CartScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Cart'), ), body: Consumer<CartModel>( ...
6
Anandhiswankar/ZigglySalon
8899f8e
lib/elements/topbar.dart
Dart
www.github.com/Anandhiswankar/ZigglySalon/tree/main/lib/elements/topbar.dart
https://raw.githubusercontent.com/Anandhiswankar/ZigglySalon/8899f8e/lib/elements/topbar.dart
Anandhiswankar/ZigglySalon 8899f8e lib/elements/topbar.dart
true
200
1,011
import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; class TopBarLabel extends StatefulWidget { final String label; Color textcolor; TopBarLabel({super.key, required this.label, this.textcolor = Colors.black}); @override State<TopBarLabel> createState() => _TopBarLabelSta...
3
bfgglobalconsults/bfg-web
0be27db
lib/core/widgets/buttons/secondary_btn.dart
Dart
www.github.com/bfgglobalconsults/bfg-web/tree/main/lib/core/widgets/buttons/secondary_btn.dart
https://raw.githubusercontent.com/bfgglobalconsults/bfg-web/0be27db/lib/core/widgets/buttons/secondary_btn.dart
bfgglobalconsults/bfg-web 0be27db lib/core/widgets/buttons/secondary_btn.dart
true
200
1,130
import 'package:bfgglobal/config/theme.dart'; import 'package:flutter/material.dart'; class SecondaryButton extends StatelessWidget { final VoidCallback action; final String label; const SecondaryButton({Key? key, required this.action, required this.label}) : super(key: key); @override Widget build(B...
7
manavtore/Healify
9b7dd0b
lib/screens/profile/editProfile.dart
Dart
www.github.com/manavtore/Healify/tree/main/lib/screens/profile/editProfile.dart
https://raw.githubusercontent.com/manavtore/Healify/9b7dd0b/lib/screens/profile/editProfile.dart
manavtore/Healify 9b7dd0b lib/screens/profile/editProfile.dart
true
200
1,550
import 'package:flutter/material.dart'; import 'package:healtify/auth/metamask/loginotifier.dart'; import 'package:healtify/screens/homescreen.dart'; import 'package:provider/provider.dart'; class EditProfileDetails extends StatefulWidget { const EditProfileDetails({super.key}); @override State<EditProfileDetai...
0
f69/cherdak
f9c00cd
lib/components/misc/app_version_text.dart
Dart
www.github.com/f69/cherdak/tree/main/lib/components/misc/app_version_text.dart
https://raw.githubusercontent.com/f69/cherdak/f9c00cd/lib/components/misc/app_version_text.dart
f69/cherdak f9c00cd lib/components/misc/app_version_text.dart
true
200
544
import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:styled_widget/styled_widget.dart'; import '/app/app_colors.dart'; import '/app/app_styles.dart'; import '/service/common_providers.dart'; class AppVersionText extends HookConsumerWidget { const AppVersionTex...
2
DavidTrajkovski/MIS-l3-191027
9772cee
lib/widgets/exam_list.dart
Dart
www.github.com/DavidTrajkovski/MIS-l3-191027/tree/main/lib/widgets/exam_list.dart
https://raw.githubusercontent.com/DavidTrajkovski/MIS-l3-191027/9772cee/lib/widgets/exam_list.dart
DavidTrajkovski/MIS-l3-191027 9772cee lib/widgets/exam_list.dart
true
200
1,844
import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import '../models/exam.dart'; class ExamList extends StatelessWidget { final List<Exam> examList; final Function deleteExamSchedule; ExamList(this.examList, this.deleteExamSchedule); @override Widget build(BuildContext context) { ...
1
kristianx/Travelo
795e109
travelo_agency/lib/pages/change_password.dart
Dart
www.github.com/kristianx/Travelo/tree/main/travelo_agency/lib/pages/change_password.dart
https://raw.githubusercontent.com/kristianx/Travelo/795e109/travelo_agency/lib/pages/change_password.dart
kristianx/Travelo 795e109 travelo_agency/lib/pages/change_password.dart
true
200
7,072
import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; import 'package:provider/provider.dart'; import 'package:travelo_agency/models/agency.dart'; import 'package:travelo_agency/providers/agency_provider.dart'; import '../main.dart'; import '../widgets/CustomSnackBar.dart'; import '../widge...
5
ErDragons/appMobileFlutter
e8c7da6
appFlutter/flutter_application_1/lib/main.dart
Dart
www.github.com/ErDragons/appMobileFlutter/tree/main/appFlutter/flutter_application_1/lib/main.dart
https://raw.githubusercontent.com/ErDragons/appMobileFlutter/e8c7da6/appFlutter/flutter_application_1/lib/main.dart
ErDragons/appMobileFlutter e8c7da6 appFlutter/flutter_application_1/lib/main.dart
true
200
486
import 'package:flutter/material.dart'; import 'package:flutter_application_1/loginTela.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( title: 'Trabal...
3
QuangVinhTruong02/sneaker_app
7af3e3f
lib/ui/widget/edit_profile/user_infomation.dart
Dart
www.github.com/QuangVinhTruong02/sneaker_app/tree/main/lib/ui/widget/edit_profile/user_infomation.dart
https://raw.githubusercontent.com/QuangVinhTruong02/sneaker_app/7af3e3f/lib/ui/widget/edit_profile/user_infomation.dart
QuangVinhTruong02/sneaker_app 7af3e3f lib/ui/widget/edit_profile/user_infomation.dart
true
200
4,126
import 'package:flutter/material.dart'; import '../../../service/validation.dart'; import '../register_page.dart/valid_form_widget.dart'; class UserInfomation extends StatelessWidget { const UserInfomation({ super.key, required TextEditingController firstNameController, required TextEditingController la...
7