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
alexanderKalema/Notes-App
806c35f
lib/utils/dialogs/loading_dialog.dart
Dart
www.github.com/alexanderKalema/Notes-App/tree/main/lib/utils/dialogs/loading_dialog.dart
https://raw.githubusercontent.com/alexanderKalema/Notes-App/806c35f/lib/utils/dialogs/loading_dialog.dart
alexanderKalema/Notes-App 806c35f lib/utils/dialogs/loading_dialog.dart
true
200
3,705
import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter_spinkit/flutter_spinkit.dart'; import '../../constants/sizes.dart'; import 'loading_screen_controller.dart'; class LoadingScreen { factory LoadingScreen() => _shared; static final LoadingScreen _shared = LoadingScreen._sha...
5
BGM-109/sunmkit_bricks
4493c4c
auth/supabase_auth/__brick__/lib/app/counter/view/counter_view.dart
Dart
www.github.com/BGM-109/sunmkit_bricks/tree/main/auth/supabase_auth/__brick__/lib/app/counter/view/counter_view.dart
https://raw.githubusercontent.com/BGM-109/sunmkit_bricks/4493c4c/auth/supabase_auth/__brick__/lib/app/counter/view/counter_view.dart
BGM-109/sunmkit_bricks 4493c4c auth/supabase_auth/__brick__/lib/app/counter/view/counter_view.dart
true
200
1,168
import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import '../../../l10n/l10n.dart'; import '../controller/counter_controller.dart'; class CounterView extends ConsumerWidget { const CounterView({super.key}); @override Widget build(BuildContext context, WidgetRef ref) { ...
7
thisisWoe/flutter_generator_cli
8f5fb5a
lib/flutter_project_manager.dart
Dart
www.github.com/thisisWoe/flutter_generator_cli/tree/main/lib/flutter_project_manager.dart
https://raw.githubusercontent.com/thisisWoe/flutter_generator_cli/8f5fb5a/lib/flutter_project_manager.dart
thisisWoe/flutter_generator_cli 8f5fb5a lib/flutter_project_manager.dart
true
200
17,388
import 'dart:io'; import 'package:flutter_starter_cli/command_executor.dart'; import 'package:flutter_starter_cli/dependency_manager.dart'; import 'package:flutter_starter_cli/file_manager.dart'; import 'package:flutter_starter_cli/models/dependency_model.dart'; import 'package:flutter_starter_cli/file_editor.dart'; i...
2
aboelnasrmo/breakingBad
dafc74b
lib/presentation/screens/screen_one.dart
Dart
www.github.com/aboelnasrmo/breakingBad/tree/main/lib/presentation/screens/screen_one.dart
https://raw.githubusercontent.com/aboelnasrmo/breakingBad/dafc74b/lib/presentation/screens/screen_one.dart
aboelnasrmo/breakingBad dafc74b lib/presentation/screens/screen_one.dart
true
200
4,494
import 'package:approutertrial/business_logic/cubit/cubit/character_cubit.dart'; import 'package:approutertrial/data/model/character_model.dart'; import 'package:approutertrial/presentation/widgets/characters_item_widget.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; cl...
1
charlesbintang/pulo_seller_app
d02181a
lib/pages/add_product.dart
Dart
www.github.com/charlesbintang/pulo_seller_app/tree/main/lib/pages/add_product.dart
https://raw.githubusercontent.com/charlesbintang/pulo_seller_app/d02181a/lib/pages/add_product.dart
charlesbintang/pulo_seller_app d02181a lib/pages/add_product.dart
true
200
6,818
import 'dart:io'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:firebase_storage/firebase_storage.dart'; import 'package:flutter/material.dart'; import 'package:firebase_database/firebase_database.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:image_picker/imag...
3
azazelyash/on-a-trip
cc7d69b
lib/features/auth_screen/domain/usecases/reset_password_usecase.dart
Dart
www.github.com/azazelyash/on-a-trip/tree/main/lib/features/auth_screen/domain/usecases/reset_password_usecase.dart
https://raw.githubusercontent.com/azazelyash/on-a-trip/cc7d69b/lib/features/auth_screen/domain/usecases/reset_password_usecase.dart
azazelyash/on-a-trip cc7d69b lib/features/auth_screen/domain/usecases/reset_password_usecase.dart
true
200
697
import 'package:on_a_trip/common/helper/usecase.dart'; import 'package:on_a_trip/features/auth_screen/domain/repository/auth_screen_repository.dart'; class ResetPasswordUsecase extends Usecase<Future<void>, ResetPasswordParams> { final AuthScreenRepository authScreenRepository; ResetPasswordUsecase({required this...
4
MostafaShaban2022/master
7c66986
lib/providers/cart_provider.dart
Dart
www.github.com/MostafaShaban2022/master/tree/main/lib/providers/cart_provider.dart
https://raw.githubusercontent.com/MostafaShaban2022/master/7c66986/lib/providers/cart_provider.dart
MostafaShaban2022/master 7c66986 lib/providers/cart_provider.dart
true
200
1,846
import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:shared_preferences/shared_preferences.dart'; import 'package:flutter_application_14/models/product_model.dart'; class CartProvider extends ChangeNotifier { final List<ProductModel> _items = []; List<ProductModel> get items => _items; ...
5
MatheusHard/projeto-pet_v2
0ba1818
lib/ui/login_page.dart
Dart
www.github.com/MatheusHard/projeto-pet_v2/tree/main/lib/ui/login_page.dart
https://raw.githubusercontent.com/MatheusHard/projeto-pet_v2/0ba1818/lib/ui/login_page.dart
MatheusHard/projeto-pet_v2 0ba1818 lib/ui/login_page.dart
true
200
513
import 'package:flutter/material.dart'; class LoginPage extends StatefulWidget { const LoginPage({super.key}); @override State<LoginPage> createState() => _LoginPageState(); } class _LoginPageState extends State<LoginPage> { @override Widget build(BuildContext context) { return Scaffold( body: ...
6
rolfrostock/flutter-wp
8fafa0a
lib/providers/theme_provider.dart
Dart
www.github.com/rolfrostock/flutter-wp/tree/main/lib/providers/theme_provider.dart
https://raw.githubusercontent.com/rolfrostock/flutter-wp/8fafa0a/lib/providers/theme_provider.dart
rolfrostock/flutter-wp 8fafa0a lib/providers/theme_provider.dart
true
200
866
// lib/providers/theme_provider.dart import 'package:flutter/material.dart'; import 'package:shared_preferences/shared_preferences.dart'; class ThemeProvider extends ChangeNotifier { ThemeData currentTheme = ThemeData.light(); // Tema padrão ThemeProvider() { loadTheme(); } void toggleTheme(bool isDark)...
0
firmprojects/bukateria
5aa6e20
lib/repository/auth_repository.dart
Dart
www.github.com/firmprojects/bukateria/tree/main/lib/repository/auth_repository.dart
https://raw.githubusercontent.com/firmprojects/bukateria/5aa6e20/lib/repository/auth_repository.dart
firmprojects/bukateria 5aa6e20 lib/repository/auth_repository.dart
true
200
8,355
import 'package:bukateria/repository/base_auth_repository.dart'; import 'package:firebase_auth/firebase_auth.dart' as auth; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:flutter/material.dart'; import 'package:geolocator/geolocat...
7
KabaDH/custom-dropdown-dif
5a61311
example/lib/widgets/multi_select_dropdown.dart
Dart
www.github.com/KabaDH/custom-dropdown-dif/tree/main/example/lib/widgets/multi_select_dropdown.dart
https://raw.githubusercontent.com/KabaDH/custom-dropdown-dif/5a61311/example/lib/widgets/multi_select_dropdown.dart
KabaDH/custom-dropdown-dif 5a61311 example/lib/widgets/multi_select_dropdown.dart
true
200
2,250
import 'dart:developer'; import 'package:animated_custom_dropdown/custom_dropdown.dart'; import 'package:animated_custom_dropdown_example/models/geo_element.dart'; import 'package:animated_custom_dropdown_example/models/job.dart'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class ...
2
LimitlessFavour/gtco-smart-invoice-flutter
c6e60af
lib/models/auth/auth_dtos.dart
Dart
www.github.com/LimitlessFavour/gtco-smart-invoice-flutter/tree/main/lib/models/auth/auth_dtos.dart
https://raw.githubusercontent.com/LimitlessFavour/gtco-smart-invoice-flutter/c6e60af/lib/models/auth/auth_dtos.dart
LimitlessFavour/gtco-smart-invoice-flutter c6e60af lib/models/auth/auth_dtos.dart
true
200
3,244
import 'package:gtco_smart_invoice_flutter/services/logger_service.dart'; import 'package:gtco_smart_invoice_flutter/models/auth/user.dart'; class LoginDto { final String email; final String password; LoginDto({required this.email, required this.password}); Map<String, dynamic> toJson() => { 'email':...
1
ananyadix/DailyDo
3c00cc4
ecommerce/lib/widgets_common/exit.dart
Dart
www.github.com/ananyadix/DailyDo/tree/main/ecommerce/lib/widgets_common/exit.dart
https://raw.githubusercontent.com/ananyadix/DailyDo/3c00cc4/ecommerce/lib/widgets_common/exit.dart
ananyadix/DailyDo 3c00cc4 ecommerce/lib/widgets_common/exit.dart
true
200
855
import 'package:ecommerce/consts/consts.dart'; import 'package:flutter/services.dart'; Widget ExitPop(context){ return Dialog( child: Column( mainAxisSize: MainAxisSize.min, children: [ "Confirm".text.size(18).color(Colors.black).make(), const Divider(), 10.heightBox, ...
4
hamed-rezaee/flutter_manager_oop
4e28a15
lib/main.dart
Dart
www.github.com/hamed-rezaee/flutter_manager_oop/tree/main/lib/main.dart
https://raw.githubusercontent.com/hamed-rezaee/flutter_manager_oop/4e28a15/lib/main.dart
hamed-rezaee/flutter_manager_oop 4e28a15 lib/main.dart
true
200
1,856
import 'package:flutter/material.dart'; import 'package:flutter_manager_oop/airport_objects/implementations/airport.dart'; import 'package:flutter_manager_oop/airport_objects/implementations/runway.dart'; import 'package:flutter_manager_oop/airport_objects/implementations/ramps/small_ramp.dart'; import 'package:flutte...
3
mohmedadil/bookly-app
6861cce
lib/features/home/presentation/views/widgets/details_appbar.dart
Dart
www.github.com/mohmedadil/bookly-app/tree/main/lib/features/home/presentation/views/widgets/details_appbar.dart
https://raw.githubusercontent.com/mohmedadil/bookly-app/6861cce/lib/features/home/presentation/views/widgets/details_appbar.dart
mohmedadil/bookly-app 6861cce lib/features/home/presentation/views/widgets/details_appbar.dart
true
200
533
import 'package:flutter/material.dart'; class Details_Appbar extends StatelessWidget { const Details_Appbar({super.key}); @override Widget build(BuildContext context) { return Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ IconButton( onPressed: () { ...
6
Maves1/IU_Schedule
4a355e2
lib/select_group_page.dart
Dart
www.github.com/Maves1/IU_Schedule/tree/main/lib/select_group_page.dart
https://raw.githubusercontent.com/Maves1/IU_Schedule/4a355e2/lib/select_group_page.dart
Maves1/IU_Schedule 4a355e2 lib/select_group_page.dart
true
200
3,194
import 'package:flutter/material.dart'; import 'package:inno_schedule/services/notification_service/notification_service.dart'; import 'schedule_manager/schedule_manager.dart'; import 'local_storage.dart'; class SelectGroupPage extends StatefulWidget { const SelectGroupPage({super.key}); @override State<SelectG...
5
KosiNzube/SimpleSwap
dbab4e9
lib/Styles/tags.dart
Dart
www.github.com/KosiNzube/SimpleSwap/tree/main/lib/Styles/tags.dart
https://raw.githubusercontent.com/KosiNzube/SimpleSwap/dbab4e9/lib/Styles/tags.dart
KosiNzube/SimpleSwap dbab4e9 lib/Styles/tags.dart
true
200
1,814
import 'package:flutter/material.dart'; import 'constants.dart'; class Tags extends StatelessWidget { const Tags({ required Key key, }) : super(key: key); @override Widget build(BuildContext context) { return Column( children: [ Row( children: [ SizedBox(width: kDe...
7
ArshdeepBrar300/ShopApp
434869c
lib/widgets/cart_item.dart
Dart
www.github.com/ArshdeepBrar300/ShopApp/tree/main/lib/widgets/cart_item.dart
https://raw.githubusercontent.com/ArshdeepBrar300/ShopApp/434869c/lib/widgets/cart_item.dart
ArshdeepBrar300/ShopApp 434869c lib/widgets/cart_item.dart
true
200
2,299
import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:provider/provider.dart'; import '../providers/cart.dart'; class CartItem extends StatelessWidget { final String id; final double price; final String prodID; final int quantity; final String title; CartItem(thi...
0
kneelon/upload_images_bloc
69c3f63
lib/data/model/upload_photo_model.dart
Dart
www.github.com/kneelon/upload_images_bloc/tree/main/lib/data/model/upload_photo_model.dart
https://raw.githubusercontent.com/kneelon/upload_images_bloc/69c3f63/lib/data/model/upload_photo_model.dart
kneelon/upload_images_bloc 69c3f63 lib/data/model/upload_photo_model.dart
true
200
1,162
import 'package:xam/domain/entity/upload_photo_entity.dart'; import 'package:xam/presentation/utility/constant.dart' as constants; class UploadPhotoModel extends UploadPhotoEntity { const UploadPhotoModel({ String name = constants.empty, String job = constants.empty, List<dynamic> images = const [], ...
2
richardnhek/mortgage-brokers-webapp
7362948
lib/chat_page/chat_page_widget.dart
Dart
www.github.com/richardnhek/mortgage-brokers-webapp/tree/main/lib/chat_page/chat_page_widget.dart
https://raw.githubusercontent.com/richardnhek/mortgage-brokers-webapp/7362948/lib/chat_page/chat_page_widget.dart
richardnhek/mortgage-brokers-webapp 7362948 lib/chat_page/chat_page_widget.dart
true
200
4,803
import '/backend/backend.dart'; import '/flutter_flow/chat/index.dart'; import '/flutter_flow/flutter_flow_theme.dart'; import '/flutter_flow/flutter_flow_util.dart'; import '/flutter_flow/flutter_flow_widgets.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; import '...
4
ef777/eskibio
85f6ca4
lib/pages/arama.dart
Dart
www.github.com/ef777/eskibio/tree/main/lib/pages/arama.dart
https://raw.githubusercontent.com/ef777/eskibio/85f6ca4/lib/pages/arama.dart
ef777/eskibio 85f6ca4 lib/pages/arama.dart
true
200
3,497
import 'dart:convert'; import 'package:biorganikpazar/components/urun_blog.dart'; import 'package:biorganikpazar/config/config.dart'; import 'package:biorganikpazar/models/urunliste_model.dart'; import 'package:flutter/material.dart'; class Arama extends StatefulWidget { const Arama({Key? key}) : super(key: key); ...
3
senjafebriana06/nyobavirpa
333dd7b
lib/widgets/text_input.dart
Dart
www.github.com/senjafebriana06/nyobavirpa/tree/main/lib/widgets/text_input.dart
https://raw.githubusercontent.com/senjafebriana06/nyobavirpa/333dd7b/lib/widgets/text_input.dart
senjafebriana06/nyobavirpa 333dd7b lib/widgets/text_input.dart
true
200
1,356
import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; class TextInput extends StatefulWidget { String label; bool? obscureText; TextEditingController controller; TextInput( {required this.label, this.obscureText = false, required this.controller}); @override St...
6
AliJawadSubhan/api-post
83fa8ab
lib/model.dart
Dart
www.github.com/AliJawadSubhan/api-post/tree/main/lib/model.dart
https://raw.githubusercontent.com/AliJawadSubhan/api-post/83fa8ab/lib/model.dart
AliJawadSubhan/api-post 83fa8ab lib/model.dart
true
200
704
import 'dart:convert'; Data dataFromJson(String str) => Data.fromJson(json.decode(str)); String dataToJson(Data data) => json.encode(data.toJson()); class Data { Data({ required this.name, required this.job, required this.id, required this.createdAt, }); String name; String job; String id;...
5
rafify2711/Product-List-Task
ff225bc
lib/view/product/widget/product_widget.dart
Dart
www.github.com/rafify2711/Product-List-Task/tree/main/lib/view/product/widget/product_widget.dart
https://raw.githubusercontent.com/rafify2711/Product-List-Task/ff225bc/lib/view/product/widget/product_widget.dart
rafify2711/Product-List-Task ff225bc lib/view/product/widget/product_widget.dart
true
200
3,168
import 'package:flutter/material.dart'; import '../../../model/product_dm.dart'; class ProductWidget extends StatelessWidget { final Product product; const ProductWidget({super.key, required this.product}); @override Widget build(BuildContext context) { return SizedBox( child: Card( shape: ...
0
9eren1999/evcildostumnew
b52f3da
lib/yakinimdascreen/konumlar.dart
Dart
www.github.com/9eren1999/evcildostumnew/tree/main/lib/yakinimdascreen/konumlar.dart
https://raw.githubusercontent.com/9eren1999/evcildostumnew/b52f3da/lib/yakinimdascreen/konumlar.dart
9eren1999/evcildostumnew b52f3da lib/yakinimdascreen/konumlar.dart
true
200
10,022
class Veteriner { final String isim; final double enlem; final double boylam; final String mapsUrl; final String adres; Veteriner(this.isim, this.enlem, this.boylam, this.mapsUrl, this.adres); } List<Veteriner> yozgatVeterinerleri = [ //08// Artvin Veterinerleri Veteriner('Can Veteriner Kliniği', ...
1
Alan-MN/BrasilSemFake
c42d2cb
BrasilSemFakeApp/lib/src/features/auth/auth_guard.dart
Dart
www.github.com/Alan-MN/BrasilSemFake/tree/main/BrasilSemFakeApp/lib/src/features/auth/auth_guard.dart
https://raw.githubusercontent.com/Alan-MN/BrasilSemFake/c42d2cb/BrasilSemFakeApp/lib/src/features/auth/auth_guard.dart
Alan-MN/BrasilSemFake c42d2cb BrasilSemFakeApp/lib/src/features/auth/auth_guard.dart
true
200
450
import 'package:flutter_modular/flutter_modular.dart'; import 'package:shared_preferences/shared_preferences.dart'; class AuthGuard extends RouteGuard { AuthGuard() : super(redirectTo: '/login'); @override Future<bool> canActivate(String path, ModularRoute router) async { SharedPreferences prefs = await Sha...
7
SusanHidalgoG/Programacion_DispositivosMoviles
e1ae44b
lib/flutter_flow/internationalization.dart
Dart
www.github.com/SusanHidalgoG/Programacion_DispositivosMoviles/tree/main/lib/flutter_flow/internationalization.dart
https://raw.githubusercontent.com/SusanHidalgoG/Programacion_DispositivosMoviles/e1ae44b/lib/flutter_flow/internationalization.dart
SusanHidalgoG/Programacion_DispositivosMoviles e1ae44b lib/flutter_flow/internationalization.dart
true
200
6,181
import 'package:flutter/material.dart'; import 'package:flutter/foundation.dart'; import 'package:shared_preferences/shared_preferences.dart'; const _kLocaleStorageKey = '__locale_key__'; class FFLocalizations { FFLocalizations(this.locale); final Locale locale; static FFLocalizations of(BuildContext context)...
2
OmarMushtaha2020/to_do_app
7720eda
lib/modules/done_tasks/done_tasks.dart
Dart
www.github.com/OmarMushtaha2020/to_do_app/tree/main/lib/modules/done_tasks/done_tasks.dart
https://raw.githubusercontent.com/OmarMushtaha2020/to_do_app/7720eda/lib/modules/done_tasks/done_tasks.dart
OmarMushtaha2020/to_do_app 7720eda lib/modules/done_tasks/done_tasks.dart
true
200
608
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import '../../shared/components/components.dart'; import '../../shared/components/constant.dart'; import '../../shared/cubit/cubit.dart'; import '../../shared/cubit/status.dart'; class D...
4
damarazky/APK-ALARM
62c376d
lib/main.dart
Dart
www.github.com/damarazky/APK-ALARM/tree/main/lib/main.dart
https://raw.githubusercontent.com/damarazky/APK-ALARM/62c376d/lib/main.dart
damarazky/APK-ALARM 62c376d lib/main.dart
true
200
532
import 'dart:async'; import 'package:alarm/alarm.dart'; import 'package:alarm_app/screens/index.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; Future<void> main() async { WidgetsFlutterBinding.ensureInitialized(); await SystemChrome.setPreferredOrientations([DeviceOrientati...
3
JaxongirTillaqoziyev/spiska_uz_loyihasi
dddbdc1
lib/pages/shop/add_product.dart
Dart
www.github.com/JaxongirTillaqoziyev/spiska_uz_loyihasi/tree/main/lib/pages/shop/add_product.dart
https://raw.githubusercontent.com/JaxongirTillaqoziyev/spiska_uz_loyihasi/dddbdc1/lib/pages/shop/add_product.dart
JaxongirTillaqoziyev/spiska_uz_loyihasi dddbdc1 lib/pages/shop/add_product.dart
true
200
16,072
import 'dart:io'; import 'dart:math'; import 'package:carousel_slider/carousel_slider.dart'; import 'package:flutter/material.dart'; import 'package:flutter_barcode_scanner/flutter_barcode_scanner.dart'; import 'package:http/http.dart' as http; import 'package:provider/provider.dart'; import '../../core/core_widgets.d...
0
CarlaAlves957/Flutter_dart_curso_udemy
4dff4a6
fundamentos/tiposbasicos_2.dart
Dart
www.github.com/CarlaAlves957/Flutter_dart_curso_udemy/tree/main/fundamentos/tiposbasicos_2.dart
https://raw.githubusercontent.com/CarlaAlves957/Flutter_dart_curso_udemy/4dff4a6/fundamentos/tiposbasicos_2.dart
CarlaAlves957/Flutter_dart_curso_udemy 4dff4a6 fundamentos/tiposbasicos_2.dart
true
200
632
/* -LIST -SET -MAP */ main(){ //LIST var aprovados = ["Ana", "Carlos", "Daniel", "Rafael"]; print(aprovados is List); print(aprovados); print(aprovados.elementAt(2)); print(aprovados[0]); print (aprovados[4]); var telefones = { 'João' : '86 998210342', 'Maria' : '87 58841258725', 'P...
1
mohammedafreedps/eClassify
299b928
lib/pay/Screens/PaymentSettingScreen/DigiWalletScreen/third_party_screen.dart
Dart
www.github.com/mohammedafreedps/eClassify/tree/main/lib/pay/Screens/PaymentSettingScreen/DigiWalletScreen/third_party_screen.dart
https://raw.githubusercontent.com/mohammedafreedps/eClassify/299b928/lib/pay/Screens/PaymentSettingScreen/DigiWalletScreen/third_party_screen.dart
mohammedafreedps/eClassify 299b928 lib/pay/Screens/PaymentSettingScreen/DigiWalletScreen/third_party_screen.dart
true
200
1,733
import 'package:eClassify/pay/Constants/colors.dart'; import 'package:eClassify/pay/Constants/images.dart'; import 'package:eClassify/pay/Utils/common_text_widget.dart'; import 'package:flutter/material.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:get/get.dart'; class ThirdPartyScreen e...
2
lvlohammat/en_club
2f3137b
lib/helpers/db_helper.dart
Dart
www.github.com/lvlohammat/en_club/tree/main/lib/helpers/db_helper.dart
https://raw.githubusercontent.com/lvlohammat/en_club/2f3137b/lib/helpers/db_helper.dart
lvlohammat/en_club 2f3137b lib/helpers/db_helper.dart
true
200
1,264
import 'package:sqflite/sqflite.dart' as sql; import 'package:path/path.dart' as path; class DbHelper { static Future<sql.Database> database() async { final dbPath = await sql.getDatabasesPath(); return await sql.openDatabase( path.join(dbPath, 'saved.db'), version: 1, onCreate: (db, versio...
7
Abhishekbagdiya01/Echo
de3a36e
lib/bloc/user_bloc/user_bloc_state.dart
Dart
www.github.com/Abhishekbagdiya01/Echo/tree/main/lib/bloc/user_bloc/user_bloc_state.dart
https://raw.githubusercontent.com/Abhishekbagdiya01/Echo/de3a36e/lib/bloc/user_bloc/user_bloc_state.dart
Abhishekbagdiya01/Echo de3a36e lib/bloc/user_bloc/user_bloc_state.dart
true
200
1,072
part of 'user_bloc_bloc.dart'; sealed class UserBlocState extends Equatable { const UserBlocState(); @override List<Object> get props => []; } class UserBlocInitial extends UserBlocState {} class UserBlocLoadingState extends UserBlocState {} class UserBlocLoadedState extends UserBlocState { UserDataModel u...
6
eme-hache/cinemapedia_app
e849f3c
lib/presentation/widgets/movies/movie_overview.dart
Dart
www.github.com/eme-hache/cinemapedia_app/tree/main/lib/presentation/widgets/movies/movie_overview.dart
https://raw.githubusercontent.com/eme-hache/cinemapedia_app/e849f3c/lib/presentation/widgets/movies/movie_overview.dart
eme-hache/cinemapedia_app e849f3c lib/presentation/widgets/movies/movie_overview.dart
true
200
2,251
import 'package:flutter/material.dart'; import 'package:cinemapedia/presentation/widgets/widgets.dart'; import 'package:cinemapedia/domain/entities/entities.dart'; import 'package:cinemapedia/config/helpers/human_formats.dart'; class MovieOverview extends StatelessWidget { const MovieOverview({ super.key, r...
5
Sebastiao-Marka/tuxnet
08a5ecd
lib/para_voce/widget_panos.dart
Dart
www.github.com/Sebastiao-Marka/tuxnet/tree/main/lib/para_voce/widget_panos.dart
https://raw.githubusercontent.com/Sebastiao-Marka/tuxnet/08a5ecd/lib/para_voce/widget_panos.dart
Sebastiao-Marka/tuxnet 08a5ecd lib/para_voce/widget_panos.dart
true
200
1,104
import 'package:flutter/material.dart'; import '../styles/color.dart'; class WidgetPanos extends StatefulWidget { const WidgetPanos({super.key}); @override State<WidgetPanos> createState() => _WidgetPanosState(); } class _WidgetPanosState extends State<WidgetPanos> { @override Widget build(BuildContext co...
4
ivoidable/Vendor-Management-RN
e8a0cfb
lib/screen/vendor/tabs/vendor_tabs.dart
Dart
www.github.com/ivoidable/Vendor-Management-RN/tree/main/lib/screen/vendor/tabs/vendor_tabs.dart
https://raw.githubusercontent.com/ivoidable/Vendor-Management-RN/e8a0cfb/lib/screen/vendor/tabs/vendor_tabs.dart
ivoidable/Vendor-Management-RN e8a0cfb lib/screen/vendor/tabs/vendor_tabs.dart
true
200
9,615
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:intl/intl.dart'; import 'package:vendor/controller/vendor/main_controller.dart'; import 'package:vendor/helper/database.dart'; import 'package:vendor/helper/helper_widgets.dart'; import 'package:vendor/main.dart'; import 'package:ven...
3
Phirakan/Flutter-app-for-IoT-Locker
67a8155
lib/screen/register.dart
Dart
www.github.com/Phirakan/Flutter-app-for-IoT-Locker/tree/main/lib/screen/register.dart
https://raw.githubusercontent.com/Phirakan/Flutter-app-for-IoT-Locker/67a8155/lib/screen/register.dart
Phirakan/Flutter-app-for-IoT-Locker 67a8155 lib/screen/register.dart
true
200
6,108
import 'package:flutter/material.dart'; import 'dart:async'; import 'package:http/http.dart' as http; import 'dart:convert'; class RegisterScreen extends StatefulWidget { const RegisterScreen({Key? key}) : super(key: key); @override _RegisterScreenState createState() => _RegisterScreenState(); } class _Registe...
0
somtech123/finx
453c111
lib/features/dashboard/screen/notification.dart
Dart
www.github.com/somtech123/finx/tree/main/lib/features/dashboard/screen/notification.dart
https://raw.githubusercontent.com/somtech123/finx/453c111/lib/features/dashboard/screen/notification.dart
somtech123/finx 453c111 lib/features/dashboard/screen/notification.dart
true
200
2,221
import 'package:finx/core/constant/app_color.dart'; import 'package:finx/features/dashboard/widget/notification_tile.dart'; import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:get/get.dart'; class NotificationScreen extends StatelessWidget { const Noti...
1
rolanos/gw_chat
9bc2d91
lib/features/statistics/view/widget/chart.dart
Dart
www.github.com/rolanos/gw_chat/tree/main/lib/features/statistics/view/widget/chart.dart
https://raw.githubusercontent.com/rolanos/gw_chat/9bc2d91/lib/features/statistics/view/widget/chart.dart
rolanos/gw_chat 9bc2d91 lib/features/statistics/view/widget/chart.dart
true
200
4,248
import 'package:fl_chart/fl_chart.dart'; import 'package:flutter/material.dart'; import 'package:gw_chat/core/extension.dart'; import 'package:gw_chat/core/model/user_list.dart'; class LineChartCustom extends StatefulWidget { const LineChartCustom({ super.key, required this.userList, required this.rightT...
7
Farizaaaa/flutter_responsive_ui_design
8be611d
lib/widgets/text_widget.dart
Dart
www.github.com/Farizaaaa/flutter_responsive_ui_design/tree/main/lib/widgets/text_widget.dart
https://raw.githubusercontent.com/Farizaaaa/flutter_responsive_ui_design/8be611d/lib/widgets/text_widget.dart
Farizaaaa/flutter_responsive_ui_design 8be611d lib/widgets/text_widget.dart
true
200
373
import 'package:flutter/material.dart'; class TextWidget extends StatelessWidget { final String text; const TextWidget({super.key,required this.text}); @override Widget build(BuildContext context) { return Padding( padding: EdgeInsets.all(8), child: Text(text, style: TextStyle(fontW...
2
oguguogu/restart
3f8f65b
flash_card/lib/application/function/make_sentence.dart
Dart
www.github.com/oguguogu/restart/tree/main/flash_card/lib/application/function/make_sentence.dart
https://raw.githubusercontent.com/oguguogu/restart/3f8f65b/flash_card/lib/application/function/make_sentence.dart
oguguogu/restart 3f8f65b flash_card/lib/application/function/make_sentence.dart
true
200
2,142
import 'dart:async'; import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:http/http.dart' as http; import 'package:flash_card/secret.dart'; import 'package:flash_card/presentation/provider/provider_sentence.dart'; Future<void> makeS...
6
MuhammadHamza5261/mahalila
4dab905
lib/screens/home/view_all_for_sale.dart
Dart
www.github.com/MuhammadHamza5261/mahalila/tree/main/lib/screens/home/view_all_for_sale.dart
https://raw.githubusercontent.com/MuhammadHamza5261/mahalila/4dab905/lib/screens/home/view_all_for_sale.dart
MuhammadHamza5261/mahalila 4dab905 lib/screens/home/view_all_for_sale.dart
true
200
3,695
import 'package:flutter/material.dart'; import 'package:mahalila/component/customAppBar2.dart'; import 'package:mahalila/component/customText.dart'; import 'package:mahalila/component/search_Textfield.dart'; import '../../utils/styles.dart'; class ViewAllForSale extends StatefulWidget { const ViewAllForSale({super....
5
EDDI-RobotAcademy/WebAppPersonalProject
6fc36ec
p4th/AnnaJo/lolEsportsKorea_frontend/lib/pages/setting_page.dart
Dart
www.github.com/EDDI-RobotAcademy/WebAppPersonalProject/tree/main/p4th/AnnaJo/lolEsportsKorea_frontend/lib/pages/setting_page.dart
https://raw.githubusercontent.com/EDDI-RobotAcademy/WebAppPersonalProject/6fc36ec/p4th/AnnaJo/lolEsportsKorea_frontend/lib/pages/setting_page.dart
EDDI-RobotAcademy/WebAppPersonalProject 6fc36ec p4th/AnnaJo/lolEsportsKorea_frontend/lib/pages/setting_page.dart
true
200
4,363
import 'dart:ffi'; import 'package:flutter/material.dart'; import 'package:flutter_secure_storage/flutter_secure_storage.dart'; import 'package:lol_esports_korea_app/pages/authentication/sign_in_page.dart'; import 'package:lol_esports_korea_app/utility/size.dart'; import '../api/authentication/spring_member_api.dart'...
4
MrDgbot/open_calculator
5edc8d2
lib/common/generator.dart
Dart
www.github.com/MrDgbot/open_calculator/tree/main/lib/common/generator.dart
https://raw.githubusercontent.com/MrDgbot/open_calculator/5edc8d2/lib/common/generator.dart
MrDgbot/open_calculator 5edc8d2 lib/common/generator.dart
true
200
7,089
import 'dart:math' as math; // void main() { // final generator = Generator(); // /// 10为题目数量,6位题目运算数 // for (CalculationAble c in generator.random(10, 6)) { // print('$c = ${c.result}\n'); // } // } class Generator { final aMap = generateAddMap(); final sMap = generateSubtractMap(); final mMap = ge...
3
msharjeelawan/Service_User
fa31433
lib/Helper/Constant.dart
Dart
www.github.com/msharjeelawan/Service_User/tree/main/lib/Helper/Constant.dart
https://raw.githubusercontent.com/msharjeelawan/Service_User/fa31433/lib/Helper/Constant.dart
msharjeelawan/Service_User fa31433 lib/Helper/Constant.dart
true
200
1,745
import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:mutwaffer_user/translations/locale_keys.g.dart'; class Constant { static String appTitle = LocaleKeys.Mutawaffer.tr(); static String welcomeText = "Welcome to "; static String companyName="Mutwaffer"...
0
swarajbachu/socratea
146527b
lib/screens/DarshBoard.dart
Dart
www.github.com/swarajbachu/socratea/tree/main/lib/screens/DarshBoard.dart
https://raw.githubusercontent.com/swarajbachu/socratea/146527b/lib/screens/DarshBoard.dart
swarajbachu/socratea 146527b lib/screens/DarshBoard.dart
true
200
5,084
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; import 'package:flutter/material.dart'; import 'package:flutter/material.dart'; import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import 'package:socratea/screens/chat_area.dart'; import 'package:...
7
MahmoudHosni/edhp-main
7c7761e
lib/core/utils/app_components/widgets/EditTextView.dart
Dart
www.github.com/MahmoudHosni/edhp-main/tree/main/lib/core/utils/app_components/widgets/EditTextView.dart
https://raw.githubusercontent.com/MahmoudHosni/edhp-main/7c7761e/lib/core/utils/app_components/widgets/EditTextView.dart
MahmoudHosni/edhp-main 7c7761e lib/core/utils/app_components/widgets/EditTextView.dart
true
200
2,321
import 'package:edhp/core/utils/app_colors.dart'; import 'package:edhp/core/utils/styles/styles.dart'; import 'package:flutter/material.dart'; import 'package:flutter_svg/flutter_svg.dart'; class EditTextView extends StatelessWidget{ final TextEditingController controller; final TextInputType keyboardType; Fun...
6
Aniljangir/UnLimit
7932764
lib/bloc/theme/theme_cubit.dart
Dart
www.github.com/Aniljangir/UnLimit/tree/main/lib/bloc/theme/theme_cubit.dart
https://raw.githubusercontent.com/Aniljangir/UnLimit/7932764/lib/bloc/theme/theme_cubit.dart
Aniljangir/UnLimit 7932764 lib/bloc/theme/theme_cubit.dart
true
200
1,958
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:unlimit_demo/res/styles/styles.dart'; class ThemeCubit extends Cubit<ThemeData> { ThemeCubit() : super(_lightTheme); static final _baseTheme = ThemeData( floatingActionButtonTheme: const FloatingActionButt...
1
VincentLau9/me_car_customer
f97ee44
lib/app/model/booking-service-status.dart
Dart
www.github.com/VincentLau9/me_car_customer/tree/main/lib/app/model/booking-service-status.dart
https://raw.githubusercontent.com/VincentLau9/me_car_customer/f97ee44/lib/app/model/booking-service-status.dart
VincentLau9/me_car_customer f97ee44 lib/app/model/booking-service-status.dart
true
200
990
// To parse this JSON data, do // // final bookingServiceStatus = bookingServiceStatusFromJson(jsonString); import 'dart:convert'; BookingServiceStatus bookingServiceStatusFromJson(String str) => BookingServiceStatus.fromJson(json.decode(str)); String bookingServiceStatusToJson(BookingServiceStatus data) => json...
2
hodu-angel/flutter
7325a25
getx_example/lib/pages/state/with_provider.dart
Dart
www.github.com/hodu-angel/flutter/tree/main/getx_example/lib/pages/state/with_provider.dart
https://raw.githubusercontent.com/hodu-angel/flutter/7325a25/getx_example/lib/pages/state/with_provider.dart
hodu-angel/flutter 7325a25 getx_example/lib/pages/state/with_provider.dart
true
200
1,319
import 'package:flutter/material.dart'; import 'package:getx_example/pages/controller/count_controller_with_provider.dart'; import 'package:provider/provider.dart'; class WithProvider extends StatelessWidget { const WithProvider({Key? key}) : super(key: key); @override Widget build(BuildContext context) { r...
5
eraloop/shop_app
d14c2e7
lib/screens/product_detail_screen.dart
Dart
www.github.com/eraloop/shop_app/tree/main/lib/screens/product_detail_screen.dart
https://raw.githubusercontent.com/eraloop/shop_app/d14c2e7/lib/screens/product_detail_screen.dart
eraloop/shop_app d14c2e7 lib/screens/product_detail_screen.dart
true
200
1,573
import "package:flutter/material.dart"; import 'package:provider/provider.dart'; import '../providers/products.dart'; class ProductDetailScreen extends StatelessWidget { static const routeName = './product-detail'; const ProductDetailScreen({super.key}); @override Widget build(BuildContext context) { fi...
3
pramodksh/paper-for-peers
70e2260
lib/logic/blocs/question_paper/question_paper_bloc.dart
Dart
www.github.com/pramodksh/paper-for-peers/tree/main/lib/logic/blocs/question_paper/question_paper_bloc.dart
https://raw.githubusercontent.com/pramodksh/paper-for-peers/70e2260/lib/logic/blocs/question_paper/question_paper_bloc.dart
pramodksh/paper-for-peers 70e2260 lib/logic/blocs/question_paper/question_paper_bloc.dart
true
200
7,087
import 'dart:developer'; import 'dart:io'; import 'package:bloc/bloc.dart'; import 'package:equatable/equatable.dart'; import 'package:papers_for_peers/config/app_constants.dart'; import 'package:papers_for_peers/data/models/api_response.dart'; import 'package:papers_for_peers/data/models/document_models/question_pape...
0
cahyawibawa12/sidumita-flutter
4377389
lib/Page/Balita/StatistikBalitaPage.dart
Dart
www.github.com/cahyawibawa12/sidumita-flutter/tree/main/lib/Page/Balita/StatistikBalitaPage.dart
https://raw.githubusercontent.com/cahyawibawa12/sidumita-flutter/4377389/lib/Page/Balita/StatistikBalitaPage.dart
cahyawibawa12/sidumita-flutter 4377389 lib/Page/Balita/StatistikBalitaPage.dart
true
200
3,882
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:google_fonts/google_fonts.dart'; import 'package:posyandu/Model/BalitaModel.dart'; import 'package:posyandu/Page/Balita/Statistik/BeratBadanPage.dart'; import 'package:posyandu/Page/Balita/Statistik/LingkarKepalaPage.dart'; import 'p...
7
anggtpd/Cozy-House-App_Flutter
3169110
lib/utils/styles.dart
Dart
www.github.com/anggtpd/Cozy-House-App_Flutter/tree/main/lib/utils/styles.dart
https://raw.githubusercontent.com/anggtpd/Cozy-House-App_Flutter/3169110/lib/utils/styles.dart
anggtpd/Cozy-House-App_Flutter 3169110 lib/utils/styles.dart
true
200
1,313
import 'package:flutter/material.dart'; class Styles { static ThemeData themeData(bool isDarkTheme) { return ThemeData( // primarySwatch: Colors.red, primaryColor: isDarkTheme ? Colors.black : Colors.white, secondaryHeaderColor: isDarkTheme ? const Color(0xff82868E) : const Color(0xE6...
4
MohamedabdelMoniemsaeed/NewsApp
fbd33f9
lib/main.dart
Dart
www.github.com/MohamedabdelMoniemsaeed/NewsApp/tree/main/lib/main.dart
https://raw.githubusercontent.com/MohamedabdelMoniemsaeed/NewsApp/fbd33f9/lib/main.dart
MohamedabdelMoniemsaeed/NewsApp fbd33f9 lib/main.dart
true
200
608
import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:newap/Screen/HomeScreen.dart'; import 'package:newap/model/sources/SourcesResponse.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your app...
1
Hunnnn77/whisper_app
3419014
lib/inh/state.dart
Dart
www.github.com/Hunnnn77/whisper_app/tree/main/lib/inh/state.dart
https://raw.githubusercontent.com/Hunnnn77/whisper_app/3419014/lib/inh/state.dart
Hunnnn77/whisper_app 3419014 lib/inh/state.dart
true
200
3,783
import 'package:flutter/foundation.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:shared_preferences/shared_preferences.dart'; enum Side { from, to } enum ButtonPressd { left, right, nothing } enum LocalStorageKey { fromCode, fromCountry, toCode, toCountry, api } final class StateProvid...
2
aswin11223/Project
7b62d82
lib/model/add_product.dart
Dart
www.github.com/aswin11223/Project/tree/main/lib/model/add_product.dart
https://raw.githubusercontent.com/aswin11223/Project/7b62d82/lib/model/add_product.dart
aswin11223/Project 7b62d82 lib/model/add_product.dart
true
200
1,477
import 'package:cloud_firestore/cloud_firestore.dart'; class Product { final String id; final String categoryId; final String name; final String artistName; final String description; final String imageUrl; final double price; final String userid; int likeCount; Product({ required this.userid, ...
5
DinhVanMy/tic_tac_toe_legends_app
10ef0d6
lib/Pages/Web/web_view_open.dart
Dart
www.github.com/DinhVanMy/tic_tac_toe_legends_app/tree/main/lib/Pages/Web/web_view_open.dart
https://raw.githubusercontent.com/DinhVanMy/tic_tac_toe_legends_app/10ef0d6/lib/Pages/Web/web_view_open.dart
DinhVanMy/tic_tac_toe_legends_app 10ef0d6 lib/Pages/Web/web_view_open.dart
true
200
3,322
import 'package:flutter/material.dart'; import 'package:flutter_inappwebview/flutter_inappwebview.dart'; import 'package:get/get.dart'; import 'package:tictactoe_gameapp/Pages/Web/web_view_edit_controller.dart'; class WebViewOpen extends StatelessWidget { final String url; const WebViewOpen({super.key, required t...
6
DinhThuPhuong/LapTrinhMobile
54679ee
02-BaiTapOOp/test/test.dart
Dart
www.github.com/DinhThuPhuong/LapTrinhMobile/tree/main/02-BaiTapOOp/test/test.dart
https://raw.githubusercontent.com/DinhThuPhuong/LapTrinhMobile/54679ee/02-BaiTapOOp/test/test.dart
DinhThuPhuong/LapTrinhMobile 54679ee 02-BaiTapOOp/test/test.dart
true
200
8,712
import 'dart:isolate'; import '../models/DienThoai.dart'; import 'dart:io'; import '../models/CuaHang.dart'; import '../models/HoaDon.dart'; void main() { int chon = 0; DienThoai? dienThoai; Hoadon hoaDon; CuaHang cuaHang; List<DienThoai> listDT = []; List<Hoadon> listHD = []; // Method ra...
3
diprupareliya/rest-api-example
dbbdfbf
lib/screen/home_screen.dart
Dart
www.github.com/diprupareliya/rest-api-example/tree/main/lib/screen/home_screen.dart
https://raw.githubusercontent.com/diprupareliya/rest-api-example/dbbdfbf/lib/screen/home_screen.dart
diprupareliya/rest-api-example dbbdfbf lib/screen/home_screen.dart
true
200
3,201
import 'package:flutter/material.dart'; import 'package:rest_api_example/model/user_details_model.dart'; import 'package:rest_api_example/services/user_api_service.dart'; class Home extends StatefulWidget { const Home({Key? key}) : super(key: key); @override _HomeState createState() => _HomeState(); } class _H...
0
Jaydeep0604/chef_bites
38be78d
lib/ui/refer_and_earn/refer_and_earn_screen.dart
Dart
www.github.com/Jaydeep0604/chef_bites/tree/main/lib/ui/refer_and_earn/refer_and_earn_screen.dart
https://raw.githubusercontent.com/Jaydeep0604/chef_bites/38be78d/lib/ui/refer_and_earn/refer_and_earn_screen.dart
Jaydeep0604/chef_bites 38be78d lib/ui/refer_and_earn/refer_and_earn_screen.dart
true
200
6,178
import 'package:chef_bites/ui/base/base.dart'; import 'package:chef_bites/utils/app_colors.dart'; import 'package:chef_bites/utils/functions.dart'; import 'package:chef_bites/widget/appbar/app_bar.dart'; import 'package:chef_bites/widget/appbar/common_appbar.dart'; import 'package:flutter/material.dart'; import 'packag...
7
Sh-Jil/CinemaPranthan
c4918ea
lib/ui/screens/Movies/widgets/toprated.dart
Dart
www.github.com/Sh-Jil/CinemaPranthan/tree/main/lib/ui/screens/Movies/widgets/toprated.dart
https://raw.githubusercontent.com/Sh-Jil/CinemaPranthan/c4918ea/lib/ui/screens/Movies/widgets/toprated.dart
Sh-Jil/CinemaPranthan c4918ea lib/ui/screens/Movies/widgets/toprated.dart
true
200
2,536
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import '../../../../backend/apicall/movies.dart'; import '../../../../bloc/moviebloc/movie_bloc_bloc.dart'; import '../../../../constants/colours/colours.dart'; import '../../../widgets/movietilelist.dart'; class TopratedMovieSc...
4
InShad7/aptronix_user
3930275
lib/view/dash_board_screen/orders/widget/ordered_Item_tile.dart
Dart
www.github.com/InShad7/aptronix_user/tree/main/lib/view/dash_board_screen/orders/widget/ordered_Item_tile.dart
https://raw.githubusercontent.com/InShad7/aptronix_user/3930275/lib/view/dash_board_screen/orders/widget/ordered_Item_tile.dart
InShad7/aptronix_user 3930275 lib/view/dash_board_screen/orders/widget/ordered_Item_tile.dart
true
200
3,750
import 'package:aaptronix/view/dash_board_screen/orders/order_details_screen/order_details_screen.dart'; import 'package:aaptronix/view/splash_screen.dart/spalsh_screen.dart'; import 'package:aaptronix/view/utils/colors.dart'; import 'package:aaptronix/view/utils/utils.dart'; import 'package:cached_network_image/cached...
2
hojun-jo/NomadCoders-Flutter-Challenge
36539d8
twitter/lib/features/onboarding/widgets/bottom_bar.dart
Dart
www.github.com/hojun-jo/NomadCoders-Flutter-Challenge/tree/main/twitter/lib/features/onboarding/widgets/bottom_bar.dart
https://raw.githubusercontent.com/hojun-jo/NomadCoders-Flutter-Challenge/36539d8/twitter/lib/features/onboarding/widgets/bottom_bar.dart
hojun-jo/NomadCoders-Flutter-Challenge 36539d8 twitter/lib/features/onboarding/widgets/bottom_bar.dart
true
200
1,124
import 'package:flutter/material.dart'; import 'package:twitter/features/onboarding/widgets/round_button.dart'; class BottomBar extends StatelessWidget { final Widget leading; final bool isNextEnabled; final VoidCallback onNextTap; const BottomBar({ super.key, this.leading = const Spacer(), requir...
5
SheriffOladejo/WalletGuard
2790fb0
lib/utils/methods.dart
Dart
www.github.com/SheriffOladejo/WalletGuard/tree/main/lib/utils/methods.dart
https://raw.githubusercontent.com/SheriffOladejo/WalletGuard/2790fb0/lib/utils/methods.dart
SheriffOladejo/WalletGuard 2790fb0 lib/utils/methods.dart
true
200
1,684
import 'package:flutter/material.dart'; import 'package:wallet_offline_guard/utils/hex_color.dart'; import 'package:fluttertoast/fluttertoast.dart'; Route slideLeft(Widget next) { return PageRouteBuilder( pageBuilder: (context, animation, secondaryAnimation) => next, transitionsBuilder: (context, animation, ...
6
nguyenduyhuan26/base_bloc
726376a
lib/screens/pick_image/bloc/pick_image_bloc.dart
Dart
www.github.com/nguyenduyhuan26/base_bloc/tree/main/lib/screens/pick_image/bloc/pick_image_bloc.dart
https://raw.githubusercontent.com/nguyenduyhuan26/base_bloc/726376a/lib/screens/pick_image/bloc/pick_image_bloc.dart
nguyenduyhuan26/base_bloc 726376a lib/screens/pick_image/bloc/pick_image_bloc.dart
true
200
2,770
import 'dart:io'; import 'package:flutter/material.dart'; import 'package:flutter_base_bloc/domain/enum/pick_image_status.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:image_cropper/image_cropper.dart'; import 'package:image_picker/image_picker.dart'; import 'package:permission_handler/permis...
3
MiralDalayka/SDK_01_2023_Flutter
3c97923
Code/Dart/sdk_01_2023/lib/Align_widgets/col_widget.dart
Dart
www.github.com/MiralDalayka/SDK_01_2023_Flutter/tree/main/Code/Dart/sdk_01_2023/lib/Align_widgets/col_widget.dart
https://raw.githubusercontent.com/MiralDalayka/SDK_01_2023_Flutter/3c97923/Code/Dart/sdk_01_2023/lib/Align_widgets/col_widget.dart
MiralDalayka/SDK_01_2023_Flutter 3c97923 Code/Dart/sdk_01_2023/lib/Align_widgets/col_widget.dart
true
200
1,149
import 'package:flutter/material.dart'; class ColumnWidgetClass extends StatefulWidget { const ColumnWidgetClass({Key? key}) : super(key: key); @override State<ColumnWidgetClass> createState() => _ColumnWidgetClassState(); } class _ColumnWidgetClassState extends State<ColumnWidgetClass> { @override...
1
mohamadlounnas/devup-bsc
5a7f4d5
shared/test/models/facility_event_test.dart
Dart
www.github.com/mohamadlounnas/devup-bsc/tree/main/shared/test/models/facility_event_test.dart
https://raw.githubusercontent.com/mohamadlounnas/devup-bsc/5a7f4d5/shared/test/models/facility_event_test.dart
mohamadlounnas/devup-bsc 5a7f4d5 shared/test/models/facility_event_test.dart
true
200
4,726
import 'package:shared/models/models.dart'; import 'package:test/test.dart'; void main() { group('FacilityEvent', () { test('should create FacilityEvent instance from JSON', () { final json = { 'id': '123', 'name': 'Test Event', 'description': 'A test event', 'body': 'Event ...
0
10Lee/tugas_akhir_codehouse
e1c0ab0
lib/pages/stats/stats_controller.dart
Dart
www.github.com/10Lee/tugas_akhir_codehouse/tree/main/lib/pages/stats/stats_controller.dart
https://raw.githubusercontent.com/10Lee/tugas_akhir_codehouse/e1c0ab0/lib/pages/stats/stats_controller.dart
10Lee/tugas_akhir_codehouse e1c0ab0 lib/pages/stats/stats_controller.dart
true
200
3,298
import 'package:get/get.dart'; import 'package:get_storage/get_storage.dart'; import 'package:tugas_akhir_stenly_rachmad/config/logger.dart'; import 'package:tugas_akhir_stenly_rachmad/models/get_api/transaction_model.dart'; import 'package:tugas_akhir_stenly_rachmad/services/repository.dart'; class StatsController ex...
7
jmocampo1630/glucosense
d5a0eb6
lib/services/patient.services.dart
Dart
www.github.com/jmocampo1630/glucosense/tree/main/lib/services/patient.services.dart
https://raw.githubusercontent.com/jmocampo1630/glucosense/d5a0eb6/lib/services/patient.services.dart
jmocampo1630/glucosense d5a0eb6 lib/services/patient.services.dart
true
200
3,460
import 'package:firebase_database/firebase_database.dart'; import 'package:flutter/foundation.dart'; import 'package:glucolook/models/glucose_record.model.dart'; import 'package:glucolook/models/patient.model.dart'; class PatientDatabaseServices { final DatabaseReference _patientsRef = FirebaseDatabase.instanc...
4
AcmeSoftwareLLC/clean_framework
6ca5a2b
packages/clean_framework/example/lib/features/form/domain/form_entity.dart
Dart
www.github.com/AcmeSoftwareLLC/clean_framework/tree/main/packages/clean_framework/example/lib/features/form/domain/form_entity.dart
https://raw.githubusercontent.com/AcmeSoftwareLLC/clean_framework/6ca5a2b/packages/clean_framework/example/lib/features/form/domain/form_entity.dart
AcmeSoftwareLLC/clean_framework 6ca5a2b packages/clean_framework/example/lib/features/form/domain/form_entity.dart
true
200
1,410
import 'package:clean_framework/clean_framework.dart'; enum FormTags { email, password, gender, selectGender, } enum FormScreenState { initial, loading, success, failure, } class FormEntity extends Entity { const FormEntity({ required this.formController, this.screenState = FormScreenState....
5
nourmedini1/FoodCampanion
67c6462
lib/features/users/domain/usecases/login_remote_usecase.dart
Dart
www.github.com/nourmedini1/FoodCampanion/tree/main/lib/features/users/domain/usecases/login_remote_usecase.dart
https://raw.githubusercontent.com/nourmedini1/FoodCampanion/67c6462/lib/features/users/domain/usecases/login_remote_usecase.dart
nourmedini1/FoodCampanion 67c6462 lib/features/users/domain/usecases/login_remote_usecase.dart
true
200
474
import 'package:dartz/dartz.dart'; import 'package:food_campanion/core/failures_exceptions/failures/failures.dart'; import 'package:food_campanion/features/users/domain/repository/users_repository.dart'; class LoginRemoteUsecase { final UsersRepository usersRepository; LoginRemoteUsecase({required this.usersRepos...
6
rahul12332/fastQuizUpdated
5c852cb
lib/userPart/widgets/customCircularProgressIndicatior.dart
Dart
www.github.com/rahul12332/fastQuizUpdated/tree/main/lib/userPart/widgets/customCircularProgressIndicatior.dart
https://raw.githubusercontent.com/rahul12332/fastQuizUpdated/5c852cb/lib/userPart/widgets/customCircularProgressIndicatior.dart
rahul12332/fastQuizUpdated 5c852cb lib/userPart/widgets/customCircularProgressIndicatior.dart
true
200
737
import 'package:flutter/material.dart'; class ProgressDialog { static void show(BuildContext context, bool isLoading) { if (isLoading) { // Show the dialog showDialog( context: context, barrierDismissible: false, // Prevent closing by tapping outside builder: (BuildContext con...
3
mahdiyarz/boot_camp_p1
e15f29e
lib/views/explore/local_widgets/banner_paging.dart
Dart
www.github.com/mahdiyarz/boot_camp_p1/tree/main/lib/views/explore/local_widgets/banner_paging.dart
https://raw.githubusercontent.com/mahdiyarz/boot_camp_p1/e15f29e/lib/views/explore/local_widgets/banner_paging.dart
mahdiyarz/boot_camp_p1 e15f29e lib/views/explore/local_widgets/banner_paging.dart
true
200
1,813
import 'package:flutter/material.dart'; import '../../res/export_resources.dart'; class BannerPaging extends StatelessWidget { const BannerPaging({ super.key, required this.pageIndex, }); final int pageIndex; @override Widget build(BuildContext context) { return Row( crossAxisAlignment: ...
1
AllenWang0312/flutter_ykt
b905d9e
lib/todo/pages/custom_todo_detail_page.dart
Dart
www.github.com/AllenWang0312/flutter_ykt/tree/main/lib/todo/pages/custom_todo_detail_page.dart
https://raw.githubusercontent.com/AllenWang0312/flutter_ykt/b905d9e/lib/todo/pages/custom_todo_detail_page.dart
AllenWang0312/flutter_ykt b905d9e lib/todo/pages/custom_todo_detail_page.dart
true
200
8,643
import 'dart:async'; import 'dart:convert'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_ykt/common/util/array_util.dart'; import 'package:flutter_ykt/common/widgets/icon_wrapper.dart'; import 'package:flutter_ykt/todo/model/GroupDetail.dart'; import 'package:...
0
PyKt/clases
606f4e7
Introduccion Dart/variables/bin/variables.dart
Dart
www.github.com/PyKt/clases/tree/main/Introduccion Dart/variables/bin/variables.dart
https://raw.githubusercontent.com/PyKt/clases/606f4e7/Introduccion%20Dart/variables/bin/variables.dart
PyKt/clases 606f4e7 Introduccion Dart/variables/bin/variables.dart
true
200
1,383
import 'dart:io'; import 'package:variables/variables.dart' as variables; import 'package:variables/practicas.dart'; void main(List<String> arguments) { //Toda función debe iniciar desde una función MAIN // print('Hello world: ${variables.calculate()}!'); var name = 'Voyager I'; var year = 1977; var antennaDia...
2
viren1194/product_app_demo
5b6058f
lib/controller/demo_controller.dart
Dart
www.github.com/viren1194/product_app_demo/tree/main/lib/controller/demo_controller.dart
https://raw.githubusercontent.com/viren1194/product_app_demo/5b6058f/lib/controller/demo_controller.dart
viren1194/product_app_demo 5b6058f lib/controller/demo_controller.dart
true
200
2,809
import 'dart:async'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:get/get_rx/src/rx_workers/utils/debouncer.dart'; import 'package:product_app/model/response/product_model.dart'; import 'package:product_app/utils/api_client.dart'; class DemoController extends GetxController ...
4
xiss/post_gram_ui
128b8d4
lib/ui/widgets/common/comment/comment_view_widget.dart
Dart
www.github.com/xiss/post_gram_ui/tree/main/lib/ui/widgets/common/comment/comment_view_widget.dart
https://raw.githubusercontent.com/xiss/post_gram_ui/128b8d4/lib/ui/widgets/common/comment/comment_view_widget.dart
xiss/post_gram_ui 128b8d4 lib/ui/widgets/common/comment/comment_view_widget.dart
true
200
3,630
import 'package:flutter/material.dart'; import 'package:post_gram_ui/domain/models/comment/comment_model.dart'; import 'package:post_gram_ui/ui/widgets/common/author_header_widget.dart'; import 'package:post_gram_ui/ui/widgets/common/comment/comment_view_model.dart'; import 'package:post_gram_ui/ui/widgets/common/error...
3
ahmedabouelela1/CartedFront
596ce5a
carted/lib/components/empty_product/empty_product_widget.dart
Dart
www.github.com/ahmedabouelela1/CartedFront/tree/main/carted/lib/components/empty_product/empty_product_widget.dart
https://raw.githubusercontent.com/ahmedabouelela1/CartedFront/596ce5a/carted/lib/components/empty_product/empty_product_widget.dart
ahmedabouelela1/CartedFront 596ce5a carted/lib/components/empty_product/empty_product_widget.dart
true
200
2,186
import '/flutter_flow/flutter_flow_theme.dart'; import '/flutter_flow/flutter_flow_util.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:google_fonts/google_fonts.dart'; import 'package:provider/provider.dart'; import 'empty_product_model.dart'; export 'empty_produc...
6
ahmedhesham2000/wasalny-driver
c5c3947
lib/widgets/ProgressDialog.dart
Dart
www.github.com/ahmedhesham2000/wasalny-driver/tree/main/lib/widgets/ProgressDialog.dart
https://raw.githubusercontent.com/ahmedhesham2000/wasalny-driver/c5c3947/lib/widgets/ProgressDialog.dart
ahmedhesham2000/wasalny-driver c5c3947 lib/widgets/ProgressDialog.dart
true
200
1,048
import 'package:flutter/material.dart'; import 'package:wasalny_driver/brand_colors.dart'; class ProgressDialog extends StatelessWidget { final String status; ProgressDialog({required this.status}); @override Widget build(BuildContext context) { return Dialog( shape: RoundedRectangleBorder( ...
1
juanprbs/login-dart
8a300c5
lib/login_page.dart
Dart
www.github.com/juanprbs/login-dart/tree/main/lib/login_page.dart
https://raw.githubusercontent.com/juanprbs/login-dart/8a300c5/lib/login_page.dart
juanprbs/login-dart 8a300c5 lib/login_page.dart
true
200
5,947
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: LoginPage(), ); } } class LoginPage extends StatefulWidget { const L...
0
EpimetheusMusicPlayer/pandora_mitm
9bf99ef
pandora_mitm_gui_core/lib/src/pages/control/widgets/api/previews/media/list_tiles/track.dart
Dart
www.github.com/EpimetheusMusicPlayer/pandora_mitm/tree/main/pandora_mitm_gui_core/lib/src/pages/control/widgets/api/previews/media/list_tiles/track.dart
https://raw.githubusercontent.com/EpimetheusMusicPlayer/pandora_mitm/9bf99ef/pandora_mitm_gui_core/lib/src/pages/control/widgets/api/previews/media/list_tiles/track.dart
EpimetheusMusicPlayer/pandora_mitm 9bf99ef pandora_mitm_gui_core/lib/src/pages/control/widgets/api/previews/media/list_tiles/track.dart
true
200
1,234
import 'package:flutter/material.dart'; import 'package:iapetus/iapetus.dart'; import 'package:pandora_mitm_gui_core/src/pages/control/widgets/api/previews/media/list_tiles/generic/three_line.dart'; class TrackListTile extends StatelessWidget { final TrackAnnotation annotation; final VoidCallback? onPlay; const...
7
marquesjuniorpalmas/sdk-boleto-apisimples-dart
feb364f
lib/bb.dart
Dart
www.github.com/marquesjuniorpalmas/sdk-boleto-apisimples-dart/tree/main/lib/bb.dart
https://raw.githubusercontent.com/marquesjuniorpalmas/sdk-boleto-apisimples-dart/feb364f/lib/bb.dart
marquesjuniorpalmas/sdk-boleto-apisimples-dart feb364f lib/bb.dart
true
200
8,161
class BoletoBB { late String _numeroDocumento; late String _dataVencimento; late String _dataDocumento; late String _dataProcessamento; late dynamic _valorBoleto; late dynamic _agencia; late dynamic _conta; late dynamic _convenio; late dynamic _contrato; late dynamic _carteira; late dyn...
4
mrrapp/You-Store
47d89f5
lib/widgets/interest_categories.dart
Dart
www.github.com/mrrapp/You-Store/tree/main/lib/widgets/interest_categories.dart
https://raw.githubusercontent.com/mrrapp/You-Store/47d89f5/lib/widgets/interest_categories.dart
mrrapp/You-Store 47d89f5 lib/widgets/interest_categories.dart
true
200
1,053
import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import '../utilities/color.dart'; class InterestCategories extends StatelessWidget { const InterestCategories( {super.key, required this.categoryName,required this.onTap, required this.isSelected}); final Str...
2
JoaoDevPro/Dart-Exercices
4f8196f
dartsdk-windows-ia32-release/dart-sdk/lib/_internal/js_shared/lib/date_time_patch.dart
Dart
www.github.com/JoaoDevPro/Dart-Exercices/tree/main/dartsdk-windows-ia32-release/dart-sdk/lib/_internal/js_shared/lib/date_time_patch.dart
https://raw.githubusercontent.com/JoaoDevPro/Dart-Exercices/4f8196f/dartsdk-windows-ia32-release/dart-sdk/lib/_internal/js_shared/lib/date_time_patch.dart
JoaoDevPro/Dart-Exercices 4f8196f dartsdk-windows-ia32-release/dart-sdk/lib/_internal/js_shared/lib/date_time_patch.dart
true
200
6,257
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. import 'dart:_foreign_helper' show JS; import 'dart:_internal' show patch; import 'dart:_js_helper' sho...
5
sriram84502/flutter
2b6d6e6
climte/lib/services/api.dart
Dart
www.github.com/sriram84502/flutter/tree/main/climte/lib/services/api.dart
https://raw.githubusercontent.com/sriram84502/flutter/2b6d6e6/climte/lib/services/api.dart
sriram84502/flutter 2b6d6e6 climte/lib/services/api.dart
true
200
478
import 'package:http/http.dart'; String _api = '04b30858b422c5ecaf86fe267cab7445'; class GetInfo{ getData(double lon,double lat) async { Response response = await get(Uri.parse('https://api.openweathermap.org/data/2.5/weather?lat=$lat&lon=$lon&appid=$_api')); return response.body; } getCity(String city...
6
chardoo/inventory-first-test
9edf131
lib/repository/sections/stock.dart
Dart
www.github.com/chardoo/inventory-first-test/tree/main/lib/repository/sections/stock.dart
https://raw.githubusercontent.com/chardoo/inventory-first-test/9edf131/lib/repository/sections/stock.dart
chardoo/inventory-first-test 9edf131 lib/repository/sections/stock.dart
true
200
3,538
import 'package:rich_co_inventory/models/product.dart'; import 'package:rich_co_inventory/models/stock.dart'; import 'package:rich_co_inventory/repository/firestore_apis.dart'; import 'package:rich_co_inventory/repository/sections/product_apis.dart'; class StockApis extends FireStoreAPIs<Stock> { @override String ...
0
soe-sandar-kyi/show_movie_app
08ad018
lib/widgets/actors_and_creators_section_view.dart
Dart
www.github.com/soe-sandar-kyi/show_movie_app/tree/main/lib/widgets/actors_and_creators_section_view.dart
https://raw.githubusercontent.com/soe-sandar-kyi/show_movie_app/08ad018/lib/widgets/actors_and_creators_section_view.dart
soe-sandar-kyi/show_movie_app 08ad018 lib/widgets/actors_and_creators_section_view.dart
true
200
1,829
import 'package:flutter/material.dart'; import 'package:movie_app/data/vos/base_actor_vo.dart'; import 'package:movie_app/widgets/title_text_with_see_more_view.dart'; import '../data/vos/actor_vo.dart'; import '../resources/colors.dart'; import '../resources/dimens.dart'; import '../viewitems/actor_view.dart'; class A...
7
EhabAshraf32/E-Commerce
5ca8b46
lib/model/HomeLayoutModel.dart
Dart
www.github.com/EhabAshraf32/E-Commerce/tree/main/lib/model/HomeLayoutModel.dart
https://raw.githubusercontent.com/EhabAshraf32/E-Commerce/5ca8b46/lib/model/HomeLayoutModel.dart
EhabAshraf32/E-Commerce 5ca8b46 lib/model/HomeLayoutModel.dart
true
200
3,734
// ignore_for_file: camel_case_types, non_constant_identifier_names import 'dart:convert'; // ignore_for_file: public_member_api_docs, sort_constructors_first class HomeModel { bool status; dataDetails data; HomeModel({ required this.status, required this.data, }); Map<String, dynamic> toMap() { ...
1
techcraze00/MovieSearchApp
6ccb387
lib/services/api_service.dart
Dart
www.github.com/techcraze00/MovieSearchApp/tree/main/lib/services/api_service.dart
https://raw.githubusercontent.com/techcraze00/MovieSearchApp/6ccb387/lib/services/api_service.dart
techcraze00/MovieSearchApp 6ccb387 lib/services/api_service.dart
true
200
1,068
import 'dart:convert'; import 'package:http/http.dart' as http; class ApiService { static const String _apiKey = '908da38b'; // Replace with your API key static const String _baseUrl = 'https://www.omdbapi.com/'; // Fetch basic list of movies (with title and poster) static Future<List<dynamic>> fetchMovies(St...
4
hemanth170801/customer_milkman
192a630
lib/main.dart
Dart
www.github.com/hemanth170801/customer_milkman/tree/main/lib/main.dart
https://raw.githubusercontent.com/hemanth170801/customer_milkman/192a630/lib/main.dart
hemanth170801/customer_milkman 192a630 lib/main.dart
true
200
320
import 'package:flutter/material.dart'; import 'main_screens/customer_home.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: CustomerHomeScreen(), ); } }
3
jensikhokhariya/newdb
35e8501
lib/screen/db_s.dart
Dart
www.github.com/jensikhokhariya/newdb/tree/main/lib/screen/db_s.dart
https://raw.githubusercontent.com/jensikhokhariya/newdb/35e8501/lib/screen/db_s.dart
jensikhokhariya/newdb 35e8501 lib/screen/db_s.dart
true
200
1,603
import 'dart:io'; import 'package:path/path.dart'; import 'package:path_provider/path_provider.dart'; import 'package:sqflite/sqflite.dart'; import 'package:sqflite/sqlite_api.dart'; class DBHelper { Database? database; Future<Database> checkDB() async { if (database != null) { return database!; } e...
2
nmkawcher/SGFL
926bd8a
lib/app/modules/splash/splash_view.dart
Dart
www.github.com/nmkawcher/SGFL/tree/main/lib/app/modules/splash/splash_view.dart
https://raw.githubusercontent.com/nmkawcher/SGFL/926bd8a/lib/app/modules/splash/splash_view.dart
nmkawcher/SGFL 926bd8a lib/app/modules/splash/splash_view.dart
true
200
1,705
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:get/get.dart'; import '../../core/base/custom_view.dart'; import '../../core/values/app_colors.dart'; import '../../core/values/app_images.dart'; import 'splash_controller.dart'; class SplashScreenView extends CustomView<Sp...
6
xibbit/xibbit
cab473f
client/flutter_app/lib/pages/profile.dart
Dart
www.github.com/xibbit/xibbit/tree/main/client/flutter_app/lib/pages/profile.dart
https://raw.githubusercontent.com/xibbit/xibbit/cab473f/client/flutter_app/lib/pages/profile.dart
xibbit/xibbit cab473f client/flutter_app/lib/pages/profile.dart
true
200
13,518
// The MIT License (MIT) // // xibbit 2.0.0 Copyright (c) © 2021 Daniel W. Howard and Sanjana A. Joshi Partnership // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, i...
5
fluidpay/fluidpay-dart
ad6014d
lib/com/fluidpay/recurring/discount_request.dart
Dart
www.github.com/fluidpay/fluidpay-dart/tree/main/lib/com/fluidpay/recurring/discount_request.dart
https://raw.githubusercontent.com/fluidpay/fluidpay-dart/ad6014d/lib/com/fluidpay/recurring/discount_request.dart
fluidpay/fluidpay-dart ad6014d lib/com/fluidpay/recurring/discount_request.dart
true
200
2,941
import 'package:fluidpay/com/fluidpay/common/actions.dart'; import 'package:fluidpay/com/fluidpay/common/base.dart'; import 'package:fluidpay/com/fluidpay/recurring/discount_response.dart'; import 'package:json_annotation/json_annotation.dart'; part 'discount_request.g.dart'; @JsonSerializable() class DiscountCreateR...
0
osamaEladawy/whats_up
8bebd65
lib/features/user/data/remote/models/user_model.dart
Dart
www.github.com/osamaEladawy/whats_up/tree/main/lib/features/user/data/remote/models/user_model.dart
https://raw.githubusercontent.com/osamaEladawy/whats_up/8bebd65/lib/features/user/data/remote/models/user_model.dart
osamaEladawy/whats_up 8bebd65 lib/features/user/data/remote/models/user_model.dart
true
200
1,017
// ignore_for_file: must_be_immutable import 'package:cloud_firestore/cloud_firestore.dart'; import '../../../domain/entities/user_entity.dart'; class UserModel extends UserEntity { UserModel( {required super.userName, required super.email, required super.uid, required super.phoneNumber...
1
rohanmudvari/Book-app
5127aac
lib/common_widget/custom_button.dart
Dart
www.github.com/rohanmudvari/Book-app/tree/main/lib/common_widget/custom_button.dart
https://raw.githubusercontent.com/rohanmudvari/Book-app/5127aac/lib/common_widget/custom_button.dart
rohanmudvari/Book-app 5127aac lib/common_widget/custom_button.dart
true
200
570
import 'package:flutter/material.dart'; import 'package:riverpods/constant/app_colors.dart'; class CustomButton extends StatelessWidget { final String label; final VoidCallback onPressed; const CustomButton({super.key, required this.label, required this.onPressed}); @override Widget build(BuildContext c...
3
mhista/ahiaa
f6c7d3d
lib/features/auth/presentation/onboarding/widgets/onboardingpage.dart
Dart
www.github.com/mhista/ahiaa/tree/main/lib/features/auth/presentation/onboarding/widgets/onboardingpage.dart
https://raw.githubusercontent.com/mhista/ahiaa/f6c7d3d/lib/features/auth/presentation/onboarding/widgets/onboardingpage.dart
mhista/ahiaa f6c7d3d lib/features/auth/presentation/onboarding/widgets/onboardingpage.dart
true
200
2,946
import 'package:animate_do/animate_do.dart'; import 'package:flutter/material.dart'; import '../../../../../../utils/constants/sizes.dart'; import '../../../../../utils/constants/colors.dart'; import '../../../../../utils/helpers/helper_functions.dart'; class OnBoardingPage extends StatelessWidget { const OnBoardin...
4
petarLits/book
35c20a2
lib/app_routes.dart
Dart
www.github.com/petarLits/book/tree/main/lib/app_routes.dart
https://raw.githubusercontent.com/petarLits/book/35c20a2/lib/app_routes.dart
petarLits/book 35c20a2 lib/app_routes.dart
true
200
1,000
import 'package:book/book/book.dart'; import 'package:book/home/view/add_new_book.dart'; import 'package:book/home/view/home_page.dart'; import 'package:book/login/view/login_page.dart'; import 'package:flutter/material.dart'; import 'login/view/sign_up_page.dart'; const String homeRoute = '/'; const String loginRout...
2