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
jemiezler/Dorminic-co
d31f721
lib/common/widgets/success_screen.dart
Dart
www.github.com/jemiezler/Dorminic-co/tree/main/lib/common/widgets/success_screen.dart
https://raw.githubusercontent.com/jemiezler/Dorminic-co/d31f721/lib/common/widgets/success_screen.dart
jemiezler/Dorminic-co d31f721 lib/common/widgets/success_screen.dart
true
200
2,202
import 'package:dorminic_co/features/authentication/screens/login/login.dart'; import 'package:dorminic_co/utils/constants/assetpath.dart'; import 'package:dorminic_co/utils/constants/sizes.dart'; import 'package:dorminic_co/utils/constants/text_provider.dart'; import 'package:dorminic_co/utils/helpers/helper_functions...
5
VASANTH04032004/Iibrary
7857773
lib/models/borrow_book.dart
Dart
www.github.com/VASANTH04032004/Iibrary/tree/main/lib/models/borrow_book.dart
https://raw.githubusercontent.com/VASANTH04032004/Iibrary/7857773/lib/models/borrow_book.dart
VASANTH04032004/Iibrary 7857773 lib/models/borrow_book.dart
true
200
866
class Book { String id; String title; String author; String genre; bool isAvailable; String? borrower; DateTime? borrowedDate; Book({ required this.id, required this.title, required this.author, required this.genre, this.isAvailable = true, this.borrower, thi...
6
Owlsome001/Invex
b5f26c2
lib/services/stock_service.dart
Dart
www.github.com/Owlsome001/Invex/tree/main/lib/services/stock_service.dart
https://raw.githubusercontent.com/Owlsome001/Invex/b5f26c2/lib/services/stock_service.dart
Owlsome001/Invex b5f26c2 lib/services/stock_service.dart
true
200
965
import 'package:realm/realm.dart'; import 'package:sim/models/models.dart' as models; import 'package:sim/repositories/stock_repository.dart'; class StockService { final StockRepository _stockRepository = StockRepository(); List<models.Stock> get allStocks{ return _stockRepository.findAll().toList(); } ...
0
nextnowapp/NewFrontseat
bab7677
lib/screens/student/library/BookListScreen.dart
Dart
www.github.com/nextnowapp/NewFrontseat/tree/main/lib/screens/student/library/BookListScreen.dart
https://raw.githubusercontent.com/nextnowapp/NewFrontseat/bab7677/lib/screens/student/library/BookListScreen.dart
nextnowapp/NewFrontseat bab7677 lib/screens/student/library/BookListScreen.dart
true
200
2,530
// Dart imports: import 'dart:convert'; // Flutter imports: import 'package:flutter/material.dart'; import 'package:get/get.dart'; // Package imports: import 'package:http/http.dart' as http; import 'package:nextschool/controller/user_controller.dart'; // Project imports: import 'package:nextschool/utils/CustomAppBarW...
3
ErnestAlf222/miscelaneos
7ae71f1
lib/main.dart
Dart
www.github.com/ErnestAlf222/miscelaneos/tree/main/lib/main.dart
https://raw.githubusercontent.com/ErnestAlf222/miscelaneos/7ae71f1/lib/main.dart
ErnestAlf222/miscelaneos 7ae71f1 lib/main.dart
true
200
1,341
import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:miscelaneos/config/config.dart'; import 'package:miscelaneos/presentation/providers/providers.dart'; void main() { runApp( const ProviderScope( child: MainApp(), ), ); } class MainApp ext...
4
Alaa-shibany/task
1fb163c
lib/views/screens/marks_screen.dart
Dart
www.github.com/Alaa-shibany/task/tree/main/lib/views/screens/marks_screen.dart
https://raw.githubusercontent.com/Alaa-shibany/task/1fb163c/lib/views/screens/marks_screen.dart
Alaa-shibany/task 1fb163c lib/views/screens/marks_screen.dart
true
200
2,891
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; import 'package:task/models/user_model.dart'; import 'package:task/style/app_colors.dart'; import 'package:task/views/widgets/home_screen_widgets/menu_button_widget.dart'; class MarksScreen extends StatefulWidget { const M...
5
FUJI-Yamao/flutter_pos
0f413ff
lib/app/regs/checker/rc_masr.dart
Dart
www.github.com/FUJI-Yamao/flutter_pos/tree/main/lib/app/regs/checker/rc_masr.dart
https://raw.githubusercontent.com/FUJI-Yamao/flutter_pos/0f413ff/lib/app/regs/checker/rc_masr.dart
FUJI-Yamao/flutter_pos 0f413ff lib/app/regs/checker/rc_masr.dart
true
200
36,559
/* * (C)2023 TERAOKA SEIKO Co., Ltd./株式会社寺岡精工 * CONFIDENTIAL/社外秘 * 無断開示・無断複製禁止 */ import 'dart:io'; import 'package:flutter_pos/app/regs/checker/rc_qc_dsp.dart'; import 'package:flutter_pos/app/regs/checker/rc_sgdsp.dart'; import '../../common/cmn_sysfunc.dart'; import '../../fb/fb2gtk.dart'; import '../../inc/a...
6
abdelhadi-ahram/explorer
686d722
lib/models/profile_model.dart
Dart
www.github.com/abdelhadi-ahram/explorer/tree/main/lib/models/profile_model.dart
https://raw.githubusercontent.com/abdelhadi-ahram/explorer/686d722/lib/models/profile_model.dart
abdelhadi-ahram/explorer 686d722 lib/models/profile_model.dart
true
200
404
class ProfileModel { String id; String userId; String? firstName; String? lastName; String? avatarUrl; String? address; String? birthDate; String? gender; String? role; ProfileModel( {required this.id, required this.userId, this.firstName, this.lastName, this.avatarUrl...
0
MrVipinVijayan/flutter_tutorials
73ee5c7
flutter_tutorials/lib/utils/nav_utils.dart
Dart
www.github.com/MrVipinVijayan/flutter_tutorials/tree/main/flutter_tutorials/lib/utils/nav_utils.dart
https://raw.githubusercontent.com/MrVipinVijayan/flutter_tutorials/73ee5c7/flutter_tutorials/lib/utils/nav_utils.dart
MrVipinVijayan/flutter_tutorials 73ee5c7 flutter_tutorials/lib/utils/nav_utils.dart
true
200
510
import 'package:flutter/material.dart'; import 'package:flutter_tutorials/model/todo.dart'; import 'package:flutter_tutorials/screens/add_to_do.dart'; final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>(); Future<void> openAddToDoScreen({ToDo? toDo}) async { Navigator.of(navigatorKey.currentCon...
4
rodrigorahman/dw_introducao_dart
278d83b
lib/d_classes/d_classes.dart
Dart
www.github.com/rodrigorahman/dw_introducao_dart/tree/main/lib/d_classes/d_classes.dart
https://raw.githubusercontent.com/rodrigorahman/dw_introducao_dart/278d83b/lib/d_classes/d_classes.dart
rodrigorahman/dw_introducao_dart 278d83b lib/d_classes/d_classes.dart
true
200
673
void main() { var camisetaADF = Camiseta(); camisetaADF.cor = 'Branca'; camisetaADF.tamanho = 'M'; camisetaADF.marca = 'Academia do Flutter'; camisetaADF.modelo = 'Gola Careca'; print('A cor da camiseta da ${camisetaADF.marca} é ${camisetaADF.cor}'); print('O tipo de lavagem da camiseta da ${camisetaAD...
3
baek-june/flutter_study
fd4478c
lib/main.dart
Dart
www.github.com/baek-june/flutter_study/tree/main/lib/main.dart
https://raw.githubusercontent.com/baek-june/flutter_study/fd4478c/lib/main.dart
baek-june/flutter_study fd4478c lib/main.dart
true
200
895
import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', home: Scaffold( appBar: AppBar( title: con...
6
bossxomlut/builder-base-flutter-project
7d71d26
lib/presentation/authentication/widget/pin_code.dart
Dart
www.github.com/bossxomlut/builder-base-flutter-project/tree/main/lib/presentation/authentication/widget/pin_code.dart
https://raw.githubusercontent.com/bossxomlut/builder-base-flutter-project/7d71d26/lib/presentation/authentication/widget/pin_code.dart
bossxomlut/builder-base-flutter-project 7d71d26 lib/presentation/authentication/widget/pin_code.dart
true
200
2,152
import 'package:flutter/material.dart'; class PinCodeWidget extends StatelessWidget { const PinCodeWidget( this.pin, { super.key, this.showPin = false, this.isDisabled = false, }); final String pin; final bool showPin; final bool isDisabled; @override Widget build(BuildContext context) ...
5
mostafagamal-cell/untitled10
5caefa1
lib/model/Order.dart
Dart
www.github.com/mostafagamal-cell/untitled10/tree/main/lib/model/Order.dart
https://raw.githubusercontent.com/mostafagamal-cell/untitled10/5caefa1/lib/model/Order.dart
mostafagamal-cell/untitled10 5caefa1 lib/model/Order.dart
true
200
2,284
import 'dart:convert'; import 'package:flutter/foundation.dart'; import 'package:http/http.dart'; import 'package:untitled10/model/products.dart'; import 'cart.dart'; class OrderItem { final String id; final double amount; final List<CartItem>products; final DateTime dateTime; OrderItem({required this.id, ...
0
ming-working/backup
76d40a2
12/SmartAgeDemoApp-main/lib/screens/main_screen/alert/alert_screen.dart
Dart
www.github.com/ming-working/backup/tree/main/12/SmartAgeDemoApp-main/lib/screens/main_screen/alert/alert_screen.dart
https://raw.githubusercontent.com/ming-working/backup/76d40a2/12/SmartAgeDemoApp-main/lib/screens/main_screen/alert/alert_screen.dart
ming-working/backup 76d40a2 12/SmartAgeDemoApp-main/lib/screens/main_screen/alert/alert_screen.dart
true
200
1,948
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:smartage_care/constants/sizes.dart'; import 'package:smartage_care/widgets/wide_button.dart'; class AlertScreen extends StatelessWidget { const AlertScreen({super.key}); @override Widget build(BuildContext context) { retu...
4
michaelemad98/stmarystathanasius
297a364
lib/model/usermodel.dart
Dart
www.github.com/michaelemad98/stmarystathanasius/tree/main/lib/model/usermodel.dart
https://raw.githubusercontent.com/michaelemad98/stmarystathanasius/297a364/lib/model/usermodel.dart
michaelemad98/stmarystathanasius 297a364 lib/model/usermodel.dart
true
200
4,850
import 'dart:convert'; List<User> usermodelFromJson(String str) => List<User>.from(json.decode(str).map((x) => User.fromJson(x))); String usermodelToJson(List<User> data) => json.encode(List<dynamic>.from(data.map((x) => x.toJson()))); class User { User({ this.id, this.firstname, this.lastname, t...
3
denuwan55/gaming-app-for-education
91d9c3b
quiz_function/lib/Puzzle/Services/db_helper.dart
Dart
www.github.com/denuwan55/gaming-app-for-education/tree/main/quiz_function/lib/Puzzle/Services/db_helper.dart
https://raw.githubusercontent.com/denuwan55/gaming-app-for-education/91d9c3b/quiz_function/lib/Puzzle/Services/db_helper.dart
denuwan55/gaming-app-for-education 91d9c3b quiz_function/lib/Puzzle/Services/db_helper.dart
true
200
1,594
import 'package:quiz_app/Puzzle//Model/photo_model.dart'; import 'package:sqflite/sqflite.dart'; import 'package:path/path.dart'; class LocalDatabase { LocalDatabase._init(); static final LocalDatabase localDatabase = LocalDatabase._init(); static Database? _database; static const String tablename = "PhotosT...
6
ShirelSaadonUnity26/UNITY26_APP_V1
2a11d46
lib/models/assistantBoundary.dart
Dart
www.github.com/ShirelSaadonUnity26/UNITY26_APP_V1/tree/main/lib/models/assistantBoundary.dart
https://raw.githubusercontent.com/ShirelSaadonUnity26/UNITY26_APP_V1/2a11d46/lib/models/assistantBoundary.dart
ShirelSaadonUnity26/UNITY26_APP_V1 2a11d46 lib/models/assistantBoundary.dart
true
200
1,017
class User1 { String userId; String phone; String firstName; String lastName; String birthday; // Constructor User1( { required this.userId, required this.phone, required this.firstName, required this.lastName, required this.birthday, }); User1 copy({ String? userId, Stri...
5
Trujix/appchop
d7098f6
devapp/appchop/lib/app/data/providers/cobradores_provider.dart
Dart
www.github.com/Trujix/appchop/tree/main/devapp/appchop/lib/app/data/providers/cobradores_provider.dart
https://raw.githubusercontent.com/Trujix/appchop/d7098f6/devapp/appchop/lib/app/data/providers/cobradores_provider.dart
Trujix/appchop d7098f6 devapp/appchop/lib/app/data/providers/cobradores_provider.dart
true
200
1,716
import 'dart:convert'; import 'package:get/get.dart'; import '../../services/api_service.dart'; import '../../utils/literals.dart'; import '../models/cobradores/alta_cobrador.dart'; import '../models/login/login_data.dart'; class CobradoresProvider { final ApiService _api = Get.find<ApiService>(); Future<bool?> ...
0
FauzizahFitriaRizqi/responsi_124210047
44f17e5
lib/mealkategori.dart
Dart
www.github.com/FauzizahFitriaRizqi/responsi_124210047/tree/main/lib/mealkategori.dart
https://raw.githubusercontent.com/FauzizahFitriaRizqi/responsi_124210047/44f17e5/lib/mealkategori.dart
FauzizahFitriaRizqi/responsi_124210047 44f17e5 lib/mealkategori.dart
true
200
3,119
import 'package:flutter/material.dart'; import 'dart:convert'; import 'package:http/http.dart' as http; class mealkategori extends StatefulWidget { @override _MealkategoriListState createState() => _MealkategoriListState(); } class _MealkategoriListState extends State<mealkategori> { late Future<List<Map<String...
3
Mahdi-Alhelal/kan_kan
db25018
packages/ui/lib/component/helper/custom_elevated_button_theme.dart
Dart
www.github.com/Mahdi-Alhelal/kan_kan/tree/main/packages/ui/lib/component/helper/custom_elevated_button_theme.dart
https://raw.githubusercontent.com/Mahdi-Alhelal/kan_kan/db25018/packages/ui/lib/component/helper/custom_elevated_button_theme.dart
Mahdi-Alhelal/kan_kan db25018 packages/ui/lib/component/helper/custom_elevated_button_theme.dart
true
200
558
import 'package:flutter/material.dart'; import 'package:ui/ui.dart'; class TElevatedButtonTheme { TElevatedButtonTheme._(); static final lightElevatedButtonTheme = ElevatedButtonThemeData( style: ElevatedButton.styleFrom( elevation: 1, backgroundColor: AppColor.primary, foregro...
6
antho-firuze/app.rynest.uniga
4c84b37
lib/utils/dio_auth_interceptor.dart
Dart
www.github.com/antho-firuze/app.rynest.uniga/tree/main/lib/utils/dio_auth_interceptor.dart
https://raw.githubusercontent.com/antho-firuze/app.rynest.uniga/4c84b37/lib/utils/dio_auth_interceptor.dart
antho-firuze/app.rynest.uniga 4c84b37 lib/utils/dio_auth_interceptor.dart
true
200
1,013
import 'dart:io'; import 'package:uniga/features/auth/controller/auth_controller.dart'; import 'package:uniga/features/auth/model/jwt_token.dart'; import 'package:dio/dio.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; class DioAuthInterceptor implements Interceptor { final Ref ref; DioAuthInterc...
0
VitorJarretaRibeiro/GlossaioDeOclusao
f86031d
app_glosario_oclusao/lib/view/homeView.dart
Dart
www.github.com/VitorJarretaRibeiro/GlossaioDeOclusao/tree/main/app_glosario_oclusao/lib/view/homeView.dart
https://raw.githubusercontent.com/VitorJarretaRibeiro/GlossaioDeOclusao/f86031d/app_glosario_oclusao/lib/view/homeView.dart
VitorJarretaRibeiro/GlossaioDeOclusao f86031d app_glosario_oclusao/lib/view/homeView.dart
true
200
12,126
import 'package:app_glosario_oclusao/controller/user_controller.dart'; import 'package:app_glosario_oclusao/widgets/custom_item_drawer_widgets.dart'; import 'package:app_glosario_oclusao/widgets/custom_visual_drawer_widgets.dart'; import 'package:flutter/material.dart'; class HomeScreen extends StatefulWidget { cons...
3
dawnvo/serendy
d2d3c7b
lib/src/features/media/infrastructure/media_repository_impl.dart
Dart
www.github.com/dawnvo/serendy/tree/main/lib/src/features/media/infrastructure/media_repository_impl.dart
https://raw.githubusercontent.com/dawnvo/serendy/d2d3c7b/lib/src/features/media/infrastructure/media_repository_impl.dart
dawnvo/serendy d2d3c7b lib/src/features/media/infrastructure/media_repository_impl.dart
true
200
3,104
import 'package:serendy/src/configs/configs.dart'; import 'package:serendy/src/features/media/media.dart'; import 'media_mapper.dart'; final class MediaRepositoryImpl implements MediaRepository { const MediaRepositoryImpl(this.supabase); final SupabaseClient supabase; static const String _tableMedia =...
6
nidanaz0324/Assignment4
4d6088f
question24.dart
Dart
www.github.com/nidanaz0324/Assignment4/tree/main/question24.dart
https://raw.githubusercontent.com/nidanaz0324/Assignment4/4d6088f/question24.dart
nidanaz0324/Assignment4 4d6088f question24.dart
true
200
438
import 'dart:io'; void main() { List<int> numbers = []; print("Enter 7 number : "); for (int i = 0; i < 7; i++) { numbers.add(int.parse(stdin.readLineSync()!)); } int count = 0; int sum = 0; for (int number in numbers) { if (number < 0) { sum += number; count++; } } if (count...
0
M4DGENIUS0/Status-Saver
2c288e3
lib/State Management/fetch_new_status_provider.dart
Dart
www.github.com/M4DGENIUS0/Status-Saver/tree/main/lib/State Management/fetch_new_status_provider.dart
https://raw.githubusercontent.com/M4DGENIUS0/Status-Saver/2c288e3/lib/State%20Management/fetch_new_status_provider.dart
M4DGENIUS0/Status-Saver 2c288e3 lib/State Management/fetch_new_status_provider.dart
true
200
732
import 'package:flutter/material.dart'; import 'package:statussaver/State%20Management/background%20service/background_task.dart'; import 'package:workmanager/workmanager.dart'; class StatusProvider with ChangeNotifier { bool _isNotificationEnabled = false; bool get isNotificationEnabled => _isNotificationEnabled...
3
EngAhmed20/ClickMart
cef6977
lib/view/home/product_details/widget/item_details_stack.dart
Dart
www.github.com/EngAhmed20/ClickMart/tree/main/lib/view/home/product_details/widget/item_details_stack.dart
https://raw.githubusercontent.com/EngAhmed20/ClickMart/cef6977/lib/view/home/product_details/widget/item_details_stack.dart
EngAhmed20/ClickMart cef6977 lib/view/home/product_details/widget/item_details_stack.dart
true
200
1,154
import 'package:cached_network_image/cached_network_image.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../../../../controller/product_details_controller.dart'; import '../../../../core/constant/api_link.dart'; import '../../../../core/constant/app_string.dart'; class ItemDetai...
5
SHEKHAR02002/petaraa_vender
bfea2a8
lib/model/shopmodel.dart
Dart
www.github.com/SHEKHAR02002/petaraa_vender/tree/main/lib/model/shopmodel.dart
https://raw.githubusercontent.com/SHEKHAR02002/petaraa_vender/bfea2a8/lib/model/shopmodel.dart
SHEKHAR02002/petaraa_vender bfea2a8 lib/model/shopmodel.dart
true
200
2,044
class ShopDetails { String? sId; String? venderId; String? aboutUs; String? contactDetails; String? shopAddress; String? shopName; int? status; String? websiteLink; List<InternalShopImages>? internalShopImages; List<ExternalShopImages>? externalShopImages; List<ExtraImages>? extraImages; ShopDe...
6
RozaqIngsoon/tsunzu
44ce639
lib/pages/bab4_5.dart
Dart
www.github.com/RozaqIngsoon/tsunzu/tree/main/lib/pages/bab4_5.dart
https://raw.githubusercontent.com/RozaqIngsoon/tsunzu/44ce639/lib/pages/bab4_5.dart
RozaqIngsoon/tsunzu 44ce639 lib/pages/bab4_5.dart
true
200
1,251
import 'package:flutter/material.dart'; import 'package:tsunzu/shared/markdown_ku.dart'; import '../shared/no_halaman.dart'; import 'pages.dart'; class BabEmpat5 extends StatelessWidget { const BabEmpat5({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: Container( ...
0
KobayashiYoh/mobile_translation_app
86b8e7c
lib/text_field_item_view.dart
Dart
www.github.com/KobayashiYoh/mobile_translation_app/tree/main/lib/text_field_item_view.dart
https://raw.githubusercontent.com/KobayashiYoh/mobile_translation_app/86b8e7c/lib/text_field_item_view.dart
KobayashiYoh/mobile_translation_app 86b8e7c lib/text_field_item_view.dart
true
200
2,274
import 'package:flutter/material.dart'; import 'package:mobile_translation_app/language.dart'; class TextFieldItemView extends StatelessWidget { const TextFieldItemView({ Key? key, required this.translate, required this.onPressedSuffixButton, required this.onPressedPlayButton, required this.onPre...
3
Aekwarat/632021139-lab5
d0e091a
lib/pages/home.dart
Dart
www.github.com/Aekwarat/632021139-lab5/tree/main/lib/pages/home.dart
https://raw.githubusercontent.com/Aekwarat/632021139-lab5/d0e091a/lib/pages/home.dart
Aekwarat/632021139-lab5 d0e091a lib/pages/home.dart
true
200
5,963
import 'dart:async'; import 'package:flutter/material.dart'; class Home extends StatefulWidget { const Home({super.key}); @override State<Home> createState() => _HomeState(); } class _HomeState extends State<Home> { final GlobalKey<FormState> _formKey = GlobalKey(); final TextEditingController _height = ...
6
KaradumanBahri/Favorite_Places
38f1ca5
lib/providers/user_places.dart
Dart
www.github.com/KaradumanBahri/Favorite_Places/tree/main/lib/providers/user_places.dart
https://raw.githubusercontent.com/KaradumanBahri/Favorite_Places/38f1ca5/lib/providers/user_places.dart
KaradumanBahri/Favorite_Places 38f1ca5 lib/providers/user_places.dart
true
200
2,179
import 'dart:io'; import 'package:favorite_places/models/place.dart'; import 'package:riverpod/riverpod.dart'; import 'package:path_provider/path_provider.dart' as syspaths ; import 'package:path/path.dart' as path; import 'package:sqflite/sqflite.dart' as sql; import 'package:sqflite/sqlite_api.dart'; Future<Database...
3
uuhmn/bahonar
d385079
lib/screen/passscreen.dart
Dart
www.github.com/uuhmn/bahonar/tree/main/lib/screen/passscreen.dart
https://raw.githubusercontent.com/uuhmn/bahonar/d385079/lib/screen/passscreen.dart
uuhmn/bahonar d385079 lib/screen/passscreen.dart
true
200
1,078
import 'package:bahonar_shiraz1400/screen/homescreen.dart'; import 'package:bahonar_shiraz1400/screen/main_home.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; class PasswordScreen extends StatefulWidget { const PasswordScreen({Key? key}) : super(key: key); @override State<Password...
0
ksenia312/widgets_example
0269ccf
lib/screens/cupertino_screen/cupertino_navigation_bar_screen.dart
Dart
www.github.com/ksenia312/widgets_example/tree/main/lib/screens/cupertino_screen/cupertino_navigation_bar_screen.dart
https://raw.githubusercontent.com/ksenia312/widgets_example/0269ccf/lib/screens/cupertino_screen/cupertino_navigation_bar_screen.dart
ksenia312/widgets_example 0269ccf lib/screens/cupertino_screen/cupertino_navigation_bar_screen.dart
true
200
738
import 'package:flutter/cupertino.dart'; import 'package:widgets_example/widgets/section.dart'; class CupertinoNavigationBarScreen extends StatelessWidget { const CupertinoNavigationBarScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return CupertinoPageScaffold( na...
6
dhananjaypipalwa/Dice-Roller-Game-
cba454c
lib/HomePage.dart
Dart
www.github.com/dhananjaypipalwa/Dice-Roller-Game-/tree/main/lib/HomePage.dart
https://raw.githubusercontent.com/dhananjaypipalwa/Dice-Roller-Game-/cba454c/lib/HomePage.dart
dhananjaypipalwa/Dice-Roller-Game- cba454c lib/HomePage.dart
true
200
2,420
import 'package:flutter/material.dart'; import 'dart:math'; class HomePage extends StatefulWidget { @override HomePageState createState() => HomePageState(); } class HomePageState extends State<HomePage> { AssetImage one = AssetImage('images/one.png'); AssetImage two = AssetImage('images/two.png'); AssetIma...
5
mustafayigit0/Ponicio-Toys-Mobile-App
52b4930
lib/urunler.dart
Dart
www.github.com/mustafayigit0/Ponicio-Toys-Mobile-App/tree/main/lib/urunler.dart
https://raw.githubusercontent.com/mustafayigit0/Ponicio-Toys-Mobile-App/52b4930/lib/urunler.dart
mustafayigit0/Ponicio-Toys-Mobile-App 52b4930 lib/urunler.dart
true
200
7,019
// ignore_for_file: library_private_types_in_public_api, prefer_const_constructors import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:ponicio/hakkimizda.dart'; import 'package:ponicio/iletisim.dart'; import 'package:ponicio/urundetay.dart'; class Uru...
3
sarthak5445/jk_hospitality
8da3250
lib/services/roomtype_service.dart
Dart
www.github.com/sarthak5445/jk_hospitality/tree/main/lib/services/roomtype_service.dart
https://raw.githubusercontent.com/sarthak5445/jk_hospitality/8da3250/lib/services/roomtype_service.dart
sarthak5445/jk_hospitality 8da3250 lib/services/roomtype_service.dart
true
200
1,127
import 'dart:convert'; import 'package:http/http.dart' as http; import 'package:jk_hospitality/models/roomtype_model.dart'; class RoomTypeService { static const String _baseUrl = 'https://5218-122-161-242-121.ngrok-free.app/api/GetRoomTypeDetails'; static const String _apiKey = 'b6daab40b04e'; static Futu...
0
rayk/wrkateedge
3c103d0
lib/app/features/cards/state/notifier.dart
Dart
www.github.com/rayk/wrkateedge/tree/main/lib/app/features/cards/state/notifier.dart
https://raw.githubusercontent.com/rayk/wrkateedge/3c103d0/lib/app/features/cards/state/notifier.dart
rayk/wrkateedge 3c103d0 lib/app/features/cards/state/notifier.dart
true
200
2,856
import 'package:fast_immutable_collections/fast_immutable_collections.dart'; import 'package:fpdart/fpdart.dart'; import 'package:loggy/loggy.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; import 'package:wrkateedge/app/features/cards/state/model/card_feature_model.dart'; import 'package:wrkateed...
6
zione-kushwaha/G-Chat
21552d9
lib/chats/message_bubble.dart
Dart
www.github.com/zione-kushwaha/G-Chat/tree/main/lib/chats/message_bubble.dart
https://raw.githubusercontent.com/zione-kushwaha/G-Chat/21552d9/lib/chats/message_bubble.dart
zione-kushwaha/G-Chat 21552d9 lib/chats/message_bubble.dart
true
200
3,455
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; class MessageBubble extends StatelessWidget { MessageBubble( {required this.texts, required this.isMe, required this.userid, required this.userimage}); final String userimage; final String useri...
5
InnovateTech-Solutions/agriculture
d13386d
lib/src/getx/dashboard_controller.dart
Dart
www.github.com/InnovateTech-Solutions/agriculture/tree/main/lib/src/getx/dashboard_controller.dart
https://raw.githubusercontent.com/InnovateTech-Solutions/agriculture/d13386d/lib/src/getx/dashboard_controller.dart
InnovateTech-Solutions/agriculture d13386d lib/src/getx/dashboard_controller.dart
true
200
506
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:get/get.dart'; class DashboardController extends GetxController { Future<List<Map<String, dynamic>>> fetchAllSubCategories() async { List<Map<String, dynamic>> subCategory = []; QuerySnapshot querySnapshot = await FirebaseFiresto...
0
thobiassilva/poc_gedore
633ed3b
lib/teste6/ferramenta.widget.dart
Dart
www.github.com/thobiassilva/poc_gedore/tree/main/lib/teste6/ferramenta.widget.dart
https://raw.githubusercontent.com/thobiassilva/poc_gedore/633ed3b/lib/teste6/ferramenta.widget.dart
thobiassilva/poc_gedore 633ed3b lib/teste6/ferramenta.widget.dart
true
200
1,457
import 'package:flutter/material.dart'; class FerramentaWidget extends StatelessWidget { final Color color; final Offset pos; final void Function(Offset delta) onPanUpdate; const FerramentaWidget({ Key? key, required this.color, required this.pos, required this.onPanUpdate, }) : super(key: k...
3
jayanth119/AtoZCinemas
53d727d
atoz_cinema/lib/screens/newspage.dart
Dart
www.github.com/jayanth119/AtoZCinemas/tree/main/atoz_cinema/lib/screens/newspage.dart
https://raw.githubusercontent.com/jayanth119/AtoZCinemas/53d727d/atoz_cinema/lib/screens/newspage.dart
jayanth119/AtoZCinemas 53d727d atoz_cinema/lib/screens/newspage.dart
true
200
4,669
import 'package:atoz_cinema/widgets/news_view.dart'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; import 'dart:convert'; import 'package:atoz_cinema/donotshow.dart'; class NewsScreen extends StatefulWidget { const NewsScreen({super.key}); @override // ignore: library_private_...
6
wozniakmarek/Room8
d0fc6fe
lib/widgets/calendar/event_provider.dart
Dart
www.github.com/wozniakmarek/Room8/tree/main/lib/widgets/calendar/event_provider.dart
https://raw.githubusercontent.com/wozniakmarek/Room8/d0fc6fe/lib/widgets/calendar/event_provider.dart
wozniakmarek/Room8 d0fc6fe lib/widgets/calendar/event_provider.dart
true
200
376
import 'package:flutter/material.dart'; import '../models/event.dart'; class EventProvider extends ChangeNotifier { List<Event> _events = []; List<Event> get events => [..._events]; DateTime _selectedDate = DateTime.now(); DateTime get selectedDate => _selectedDate; void setSelectedDate(DateTime date) {...
5
Fahimmuhammed/weather-app-flutter
7ddc96c
lib/widgets/daily_weather.dart
Dart
www.github.com/Fahimmuhammed/weather-app-flutter/tree/main/lib/widgets/daily_weather.dart
https://raw.githubusercontent.com/Fahimmuhammed/weather-app-flutter/7ddc96c/lib/widgets/daily_weather.dart
Fahimmuhammed/weather-app-flutter 7ddc96c lib/widgets/daily_weather.dart
true
200
3,140
import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import 'package:weather_app_flutter/core/colors.dart'; import 'package:weather_app_flutter/model/weather_data_daily.dart'; class DailyWeatherWidget extends StatelessWidget { final WeatherDataDaily weatherDataDaily; const DailyWeatherWidget(...
0
laesant/shop
117bd7a
lib/components/cart_item.dart
Dart
www.github.com/laesant/shop/tree/main/lib/components/cart_item.dart
https://raw.githubusercontent.com/laesant/shop/117bd7a/lib/components/cart_item.dart
laesant/shop 117bd7a lib/components/cart_item.dart
true
200
2,148
import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:shop/models/cart.dart'; import 'package:shop/models/cart_item.dart'; class CartItemWidget extends StatelessWidget { const CartItemWidget({super.key, required this.cartItem}); final CartItem cartItem; @override Wi...
3
HanaCai/Pokedex
d46d4b7
lib/views/screens/splash/splash_screen.dart
Dart
www.github.com/HanaCai/Pokedex/tree/main/lib/views/screens/splash/splash_screen.dart
https://raw.githubusercontent.com/HanaCai/Pokedex/d46d4b7/lib/views/screens/splash/splash_screen.dart
HanaCai/Pokedex d46d4b7 lib/views/screens/splash/splash_screen.dart
true
200
1,252
import 'package:get/get.dart'; import 'package:untitled/untitled.dart'; import 'package:untitled/views/screens/home/home_screen.dart'; import 'package:lottie/lottie.dart'; class SplashScreen extends StatefulWidget { const SplashScreen({Key? key}) : super(key: key); @override State<SplashScreen> createState() =>...
6
Pocket-SCH/PocketSCH_App
e2fc960
lib/controller/notify_home_controller.dart
Dart
www.github.com/Pocket-SCH/PocketSCH_App/tree/main/lib/controller/notify_home_controller.dart
https://raw.githubusercontent.com/Pocket-SCH/PocketSCH_App/e2fc960/lib/controller/notify_home_controller.dart
Pocket-SCH/PocketSCH_App e2fc960 lib/controller/notify_home_controller.dart
true
200
3,005
import 'package:get/get.dart'; //flutter pub add http로 추가함 import 'package:http/http.dart' as http; //json 파일에 한글이 깨져서 utf8을 사용하기 위해서 참조 import 'dart:convert'; import 'package:pocket_sch/controller/token_controller.dart'; class notifyController extends GetxController { @override void onInit() async { super.onI...
5
muhammdsh/WeatherApp
2083a46
lib/presentation/weather_flow/widgets/weather_daily_widget.dart
Dart
www.github.com/muhammdsh/WeatherApp/tree/main/lib/presentation/weather_flow/widgets/weather_daily_widget.dart
https://raw.githubusercontent.com/muhammdsh/WeatherApp/2083a46/lib/presentation/weather_flow/widgets/weather_daily_widget.dart
muhammdsh/WeatherApp 2083a46 lib/presentation/weather_flow/widgets/weather_daily_widget.dart
true
200
4,612
import 'dart:math'; import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_svg/svg.dart'; import 'package:intl/intl.dart'; import 'package:simple_progress_indicators/simple_progress_indicators.dart'; import '../../../app+injection/di.dart'; import ...
0
lamda-fuction/udmurahmotor
93c4563
lib/pages/Profile/wigetfuction.dart
Dart
www.github.com/lamda-fuction/udmurahmotor/tree/main/lib/pages/Profile/wigetfuction.dart
https://raw.githubusercontent.com/lamda-fuction/udmurahmotor/93c4563/lib/pages/Profile/wigetfuction.dart
lamda-fuction/udmurahmotor 93c4563 lib/pages/Profile/wigetfuction.dart
true
200
4,078
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../../FuctionHelper/shared/shared.dart'; class logout extends StatelessWidget { const logout({ Key? key, }) : super(key: key); @override Widget build(BuildContext context) { var shared = Shared(); return InkWell( ...
3
KevinLemon112/serenity_nest
68dc8d1
lib/Screens/account_help.dart
Dart
www.github.com/KevinLemon112/serenity_nest/tree/main/lib/Screens/account_help.dart
https://raw.githubusercontent.com/KevinLemon112/serenity_nest/68dc8d1/lib/Screens/account_help.dart
KevinLemon112/serenity_nest 68dc8d1 lib/Screens/account_help.dart
true
200
8,645
import 'package:flutter/material.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'login_page.dart'; // Import the LoginScreen class import 'package:cloud_firestore/cloud_firestore.dart'; class AccountHelpPage extends StatefulWidget { const AccountHelpPage({super.key}); @override AccountHelpPage...
6
alf1001/LoginPageAuth
a5a7912
email_auth/lib/app/modules/login/views/login_view.dart
Dart
www.github.com/alf1001/LoginPageAuth/tree/main/email_auth/lib/app/modules/login/views/login_view.dart
https://raw.githubusercontent.com/alf1001/LoginPageAuth/a5a7912/email_auth/lib/app/modules/login/views/login_view.dart
alf1001/LoginPageAuth a5a7912 email_auth/lib/app/modules/login/views/login_view.dart
true
200
2,029
import 'package:email_auth/app/controllers/auth_controller.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../controllers/login_controller.dart'; class LoginView extends GetView<LoginController> { final emailC = TextEditingController(text: 'alfin@gmail.com'); final passC = Te...
5
ehsonmiraz/Quiz_app
a3015f4
lib/screens/home.dart
Dart
www.github.com/ehsonmiraz/Quiz_app/tree/main/lib/screens/home.dart
https://raw.githubusercontent.com/ehsonmiraz/Quiz_app/a3015f4/lib/screens/home.dart
ehsonmiraz/Quiz_app a3015f4 lib/screens/home.dart
true
200
1,635
import 'package:baby_app/screens/Quiz.dart'; import 'package:baby_app/screens/result.dart'; import 'package:baby_app/screens/templates/answers.dart'; import 'package:baby_app/screens/templates/question.dart'; import 'package:flutter/material.dart'; class Home extends StatefulWidget{ @override State<Home> createSta...
0
sadi98/dart
6f50e64
belajar_dart_dasar/bin/function_optional_parameter2.dart
Dart
www.github.com/sadi98/dart/tree/main/belajar_dart_dasar/bin/function_optional_parameter2.dart
https://raw.githubusercontent.com/sadi98/dart/6f50e64/belajar_dart_dasar/bin/function_optional_parameter2.dart
sadi98/dart 6f50e64 belajar_dart_dasar/bin/function_optional_parameter2.dart
true
200
908
/* url video = https://youtu.be/-mzXdI27tyk menit = 3:00:00 1. Secara default, parameter wajib dikirim ketika kita memanggil function 2. Namun jika kita ingin membuat parameter yang optional, artinya tidak wajib dikirim, kita bisa wrap dalam kurung [] Contoh sayhello([String? nama]){} ...
3
Muhammad-Elshafey/language-learning-app
9376195
lib/main.dart
Dart
www.github.com/Muhammad-Elshafey/language-learning-app/tree/main/lib/main.dart
https://raw.githubusercontent.com/Muhammad-Elshafey/language-learning-app/9376195/lib/main.dart
Muhammad-Elshafey/language-learning-app 9376195 lib/main.dart
true
200
371
import 'package:flutter/material.dart'; import 'package:toko_app/screens/home.dart'; void main() { runApp(TokuApp()); } class TokuApp extends StatelessWidget { const TokuApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const MaterialApp( debugShowCheckedMode...
4
FurkanArslanF/flutter_piton
fed93c8
lib/view/register/widget/register_form.dart
Dart
www.github.com/FurkanArslanF/flutter_piton/tree/main/lib/view/register/widget/register_form.dart
https://raw.githubusercontent.com/FurkanArslanF/flutter_piton/fed93c8/lib/view/register/widget/register_form.dart
FurkanArslanF/flutter_piton fed93c8 lib/view/register/widget/register_form.dart
true
200
5,188
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_piton/product/cubit/register_cubit.dart'; import 'package:flutter_piton/product/entities/register.dart'; import 'package:flutte...
6
VenDalin/Flutter-Responsive
687c453
lib/list_screen.dart
Dart
www.github.com/VenDalin/Flutter-Responsive/tree/main/lib/list_screen.dart
https://raw.githubusercontent.com/VenDalin/Flutter-Responsive/687c453/lib/list_screen.dart
VenDalin/Flutter-Responsive 687c453 lib/list_screen.dart
true
200
653
import 'package:flutter/material.dart'; class ListScreen extends StatelessWidget { final Function(String) onItemTap; ListScreen({required this.onItemTap}); final List<String> items = [ 'Item 1', 'Item 2', 'Item 3', 'Item 4', 'Item 5', 'Item 6', 'Item 7', 'Item 8' ]; @override Widget build(BuildC...
5
DacarsAzR43L/E-LIGTAS-RESIDENT-NEW
8627e9a
lib/page/Navigation_Pages/Hotlines_Page.dart
Dart
www.github.com/DacarsAzR43L/E-LIGTAS-RESIDENT-NEW/tree/main/lib/page/Navigation_Pages/Hotlines_Page.dart
https://raw.githubusercontent.com/DacarsAzR43L/E-LIGTAS-RESIDENT-NEW/8627e9a/lib/page/Navigation_Pages/Hotlines_Page.dart
DacarsAzR43L/E-LIGTAS-RESIDENT-NEW 8627e9a lib/page/Navigation_Pages/Hotlines_Page.dart
true
200
8,709
import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:sizer/sizer.dart'; import 'package:http/http.dart' as http; import 'package:url_launcher/url_launcher.dart'; import 'package:sqflite/sqflite.dart'; import 'package:path/path.dart'; import 'package:shimmer/shimmer.dart'; class Hotlines_Page ...
0
BinghamtonRover/Dashboard
9e76bae
lib/src/widgets/navigation/views_list.dart
Dart
www.github.com/BinghamtonRover/Dashboard/tree/main/lib/src/widgets/navigation/views_list.dart
https://raw.githubusercontent.com/BinghamtonRover/Dashboard/9e76bae/lib/src/widgets/navigation/views_list.dart
BinghamtonRover/Dashboard 9e76bae lib/src/widgets/navigation/views_list.dart
true
200
6,929
import "package:flutter/material.dart"; import "package:rover_dashboard/data.dart"; import "package:rover_dashboard/models.dart"; import "package:rover_dashboard/pages.dart"; import "package:rover_dashboard/widgets.dart"; /// A simple model that just listens for changes in the network and settings. class ViewsSidebar...
3
fikreej/shop_in
d0a87e2
lib/screens/order.dart
Dart
www.github.com/fikreej/shop_in/tree/main/lib/screens/order.dart
https://raw.githubusercontent.com/fikreej/shop_in/d0a87e2/lib/screens/order.dart
fikreej/shop_in d0a87e2 lib/screens/order.dart
true
200
4,909
import 'package:flutter/material.dart'; import 'dart:convert'; import 'package:shared_preferences/shared_preferences.dart'; class OrdersScreen extends StatefulWidget { const OrdersScreen({super.key}); @override State<OrdersScreen> createState() => _OrdersScreenState(); } class _OrdersScreenState extends State<...
4
Pritom-Shajed/flutter_web_view_template
b2b9b9a
lib/src/features/settings/repositories/hive_box.dart
Dart
www.github.com/Pritom-Shajed/flutter_web_view_template/tree/main/lib/src/features/settings/repositories/hive_box.dart
https://raw.githubusercontent.com/Pritom-Shajed/flutter_web_view_template/b2b9b9a/lib/src/features/settings/repositories/hive_box.dart
Pritom-Shajed/flutter_web_view_template b2b9b9a lib/src/features/settings/repositories/hive_box.dart
true
200
1,007
import 'package:hive_ce/hive.dart'; import '../../../core/api_client/model/auth_store.dart'; import '../models/locale/locale_model.dart'; import '../models/settings_model.dart'; import '../models/theme/theme_model.dart'; class Boxes { static Box<LocaleProfile> localeProfile = Hive.box<LocaleProfile>(BoxName...
6
minesh2908/ajira_social
14b22ca
lib/views/screens/post/bloc/post_state.dart
Dart
www.github.com/minesh2908/ajira_social/tree/main/lib/views/screens/post/bloc/post_state.dart
https://raw.githubusercontent.com/minesh2908/ajira_social/14b22ca/lib/views/screens/post/bloc/post_state.dart
minesh2908/ajira_social 14b22ca lib/views/screens/post/bloc/post_state.dart
true
200
959
// ignore_for_file: public_member_api_docs, sort_constructors_first part of 'post_bloc.dart'; enum PostStatus { initial, loading, success, failure } class PostState extends Equatable { const PostState({ this.message, this.status, this.postModal, this.commentModal, }); factory PostState.initial(...
5
AshK415/FEcom
77165b0
lib/src/shared/routes/router_notifier.dart
Dart
www.github.com/AshK415/FEcom/tree/main/lib/src/shared/routes/router_notifier.dart
https://raw.githubusercontent.com/AshK415/FEcom/77165b0/lib/src/shared/routes/router_notifier.dart
AshK415/FEcom 77165b0 lib/src/shared/routes/router_notifier.dart
true
200
1,064
import 'package:flutter/foundation.dart'; import 'package:go_router/go_router.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; part 'router_notifier.g.dart'; @riverpod class RouterNotifier extends _$RouterNotifier implements Listenable { VoidCallback? routerListener; /// Our application rout...
0
arjunkeshav/postview
b8184ec
lib/feature/posts/data/datasources/remote/image_post_remote_data_source_impl.dart
Dart
www.github.com/arjunkeshav/postview/tree/main/lib/feature/posts/data/datasources/remote/image_post_remote_data_source_impl.dart
https://raw.githubusercontent.com/arjunkeshav/postview/b8184ec/lib/feature/posts/data/datasources/remote/image_post_remote_data_source_impl.dart
arjunkeshav/postview b8184ec lib/feature/posts/data/datasources/remote/image_post_remote_data_source_impl.dart
true
200
978
import 'dart:convert'; import 'package:dio/dio.dart'; import 'package:postview/core/client/api_client.dart'; import 'package:postview/feature/posts/domain/entity/post.dart'; import '../../../../../core/resources/data_state.dart'; import '../../../domain/entity/post_image.dart'; import 'image_post_remote_data_source.d...
2
Miguel-GH681/MovieApp
9e6c570
lib/widgets/card_swiper.dart
Dart
www.github.com/Miguel-GH681/MovieApp/tree/main/lib/widgets/card_swiper.dart
https://raw.githubusercontent.com/Miguel-GH681/MovieApp/9e6c570/lib/widgets/card_swiper.dart
Miguel-GH681/MovieApp 9e6c570 lib/widgets/card_swiper.dart
true
200
1,168
import 'package:card_swiper/card_swiper.dart'; import 'package:flutter/material.dart'; import 'package:movie_app/models/movie.dart'; class CardSwiper extends StatelessWidget{ final List<Movie> movies; const CardSwiper({super.key, required this.movies}); @override Widget build(BuildContext context) { fina...
3
WinyRangel/actividades-en-flutter
aea53a1
dart_clasics/bin/ejercicios_funciones.dart
Dart
www.github.com/WinyRangel/actividades-en-flutter/tree/main/dart_clasics/bin/ejercicios_funciones.dart
https://raw.githubusercontent.com/WinyRangel/actividades-en-flutter/aea53a1/dart_clasics/bin/ejercicios_funciones.dart
WinyRangel/actividades-en-flutter aea53a1 dart_clasics/bin/ejercicios_funciones.dart
true
200
910
//Importa un archivo que está en lib import 'package:dart_clasics/dart_function.dart'; //Declarar función principal void main(List<String> args) { for(var i=0; i<=10; i++){ saludar(); } var funcionSaludo = saludar; var i=0; while(i<10){ funcionSaludo(); i++; } ejecutarOperacion(10, 20, sumar);...
4
khaledmaged02/Wassaley
358de69
lib/pages/login.dart
Dart
www.github.com/khaledmaged02/Wassaley/tree/main/lib/pages/login.dart
https://raw.githubusercontent.com/khaledmaged02/Wassaley/358de69/lib/pages/login.dart
khaledmaged02/Wassaley 358de69 lib/pages/login.dart
true
200
3,972
import 'package:flutter/material.dart'; import 'package:wassaley/shared/custum_textfield.dart'; class Login extends StatelessWidget { const Login({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return SafeArea( child: Scaffold( resizeToAvoidBottomInset: true, ...
6
Yuutoallalong/Remind-Me-There
7294306
rmt/lib/main.dart
Dart
www.github.com/Yuutoallalong/Remind-Me-There/tree/main/rmt/lib/main.dart
https://raw.githubusercontent.com/Yuutoallalong/Remind-Me-There/7294306/rmt/lib/main.dart
Yuutoallalong/Remind-Me-There 7294306 rmt/lib/main.dart
true
200
3,833
import 'package:flutter/material.dart'; import 'package:hive_flutter/adapters.dart'; import 'package:rmt/AddButton.dart'; import 'package:rmt/LocalNotification.dart'; import 'package:rmt/pages/CreateLocation.dart'; import 'package:rmt/pages/CreateTime.dart'; import 'pages/CalendarPage.dart'; import 'pages/HomePage.dart...
5
edwinndev/iotflutter
27fe3c7
lib/controllers/mqtt.client.controller.dart
Dart
www.github.com/edwinndev/iotflutter/tree/main/lib/controllers/mqtt.client.controller.dart
https://raw.githubusercontent.com/edwinndev/iotflutter/27fe3c7/lib/controllers/mqtt.client.controller.dart
edwinndev/iotflutter 27fe3c7 lib/controllers/mqtt.client.controller.dart
true
200
567
import 'package:mqtt_client/mqtt_client.dart'; import 'package:mqtt_client/mqtt_server_client.dart'; class XMqttClient { MqttServerClient client = MqttServerClient('74.208.137.18', 'edwin'); void connect() { final MqttClientPayloadBuilder payload = MqttClientPayloadBuilder(); payload.addString('Hola Mundo...
2
TarekAlabd/Gaza-Sky-Flutter-Projects
0f47944
ecommerce_app/lib/views/pages/checkout_page.dart
Dart
www.github.com/TarekAlabd/Gaza-Sky-Flutter-Projects/tree/main/ecommerce_app/lib/views/pages/checkout_page.dart
https://raw.githubusercontent.com/TarekAlabd/Gaza-Sky-Flutter-Projects/0f47944/ecommerce_app/lib/views/pages/checkout_page.dart
TarekAlabd/Gaza-Sky-Flutter-Projects 0f47944 ecommerce_app/lib/views/pages/checkout_page.dart
true
200
4,645
import 'package:ecommerce_app/utils/app_colors.dart'; import 'package:ecommerce_app/view_models/checkout_cubit/checkout_cubit.dart'; import 'package:ecommerce_app/views/widgets/checkout_cart_item_widget.dart'; import 'package:ecommerce_app/views/widgets/checkout_title_widget.dart'; import 'package:ecommerce_app/views/w...
0
Arpit-dhameliya/shayari_app1
0f589fe
lib/main.dart
Dart
www.github.com/Arpit-dhameliya/shayari_app1/tree/main/lib/main.dart
https://raw.githubusercontent.com/Arpit-dhameliya/shayari_app1/0f589fe/lib/main.dart
Arpit-dhameliya/shayari_app1 0f589fe lib/main.dart
true
200
2,264
// ignore_for_file: prefer_const_constructors import 'package:admob_flutter/admob_flutter.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:google_fonts/google_fonts.dart'; import 'package:permission_handler/permission_handler.dart'; import 'package:shayari_app/firs...
1
Aficionado45/athletics_app
84f53a6
lib/screens/addmember.dart
Dart
www.github.com/Aficionado45/athletics_app/tree/main/lib/screens/addmember.dart
https://raw.githubusercontent.com/Aficionado45/athletics_app/84f53a6/lib/screens/addmember.dart
Aficionado45/athletics_app 84f53a6 lib/screens/addmember.dart
true
200
7,788
import 'package:athletics_app/screens/achievements.dart'; import 'package:athletics_app/screens/admininfo.dart'; import 'package:athletics_app/screens/loginscreeen.dart'; import 'package:athletics_app/screens/reset.dart'; import 'package:url_launcher/url_launcher.dart'; import 'package:athletics_app/screens/leaderboard...
3
jreyesgfi/flutter_train_tracker_app
0cdaa9a
lib/models/MuscleData.dart
Dart
www.github.com/jreyesgfi/flutter_train_tracker_app/tree/main/lib/models/MuscleData.dart
https://raw.githubusercontent.com/jreyesgfi/flutter_train_tracker_app/0cdaa9a/lib/models/MuscleData.dart
jreyesgfi/flutter_train_tracker_app 0cdaa9a lib/models/MuscleData.dart
true
200
9,798
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file acco...
6
Kooperlol/milton_relay
0fa435f
lib/shared/models/user_model.dart
Dart
www.github.com/Kooperlol/milton_relay/tree/main/lib/shared/models/user_model.dart
https://raw.githubusercontent.com/Kooperlol/milton_relay/0fa435f/lib/shared/models/user_model.dart
Kooperlol/milton_relay 0fa435f lib/shared/models/user_model.dart
true
200
442
import 'package:flutter/widgets.dart'; import 'package:milton_relay/shared/models/roles.dart'; class UserModel { final String id, firstName, lastName, avatarURL; final Roles role; late final Image avatar; UserModel(this.id, this.firstName, this.lastName, this.avatarURL, this.role) { avatar = initAvatar();...
5
ilinion1/Zodiac-Night
61fa6fe
lib/src/game/components/levels/level3.dart
Dart
www.github.com/ilinion1/Zodiac-Night/tree/main/lib/src/game/components/levels/level3.dart
https://raw.githubusercontent.com/ilinion1/Zodiac-Night/61fa6fe/lib/src/game/components/levels/level3.dart
ilinion1/Zodiac-Night 61fa6fe lib/src/game/components/levels/level3.dart
true
200
1,177
import 'package:flutter/material.dart'; import 'package:zodiac_night/src/game/components/card_widget.dart'; class ZnLevel3 extends StatelessWidget { const ZnLevel3({ super.key, required this.type, required this.cardFlips, required this.onItemPressed, required this.isDone, this.success, }); ...
2
oppahansi/tmdb
e70825d
lib/src/features/favorites/presentation/favorite_people_content.dart
Dart
www.github.com/oppahansi/tmdb/tree/main/lib/src/features/favorites/presentation/favorite_people_content.dart
https://raw.githubusercontent.com/oppahansi/tmdb/e70825d/lib/src/features/favorites/presentation/favorite_people_content.dart
oppahansi/tmdb e70825d lib/src/features/favorites/presentation/favorite_people_content.dart
true
200
5,278
// Flutter Imports import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; // Package Imports import 'package:cached_network_image/cached_network_image.dart'; import 'package:oppa_tmdb/src/core/constants/constants.dart'; import 'package:oppa_tmdb/src/features/favorites/provider...
0
ankitwadhwa615/panaux
047254d
lib/screens/pharmacy/apis/add_order_api.dart
Dart
www.github.com/ankitwadhwa615/panaux/tree/main/lib/screens/pharmacy/apis/add_order_api.dart
https://raw.githubusercontent.com/ankitwadhwa615/panaux/047254d/lib/screens/pharmacy/apis/add_order_api.dart
ankitwadhwa615/panaux 047254d lib/screens/pharmacy/apis/add_order_api.dart
true
200
1,653
import 'dart:io'; import 'package:dio/dio.dart'; import 'package:flutter/foundation.dart'; import 'package:fluttertoast/fluttertoast.dart'; import 'package:get/get.dart' as Getx; import 'package:hive/hive.dart'; import 'package:image_picker/image_picker.dart'; import 'package:ttsf_cloud/commons/api_constants.dart'; imp...
1
Dojak220/nurse
79aeee7
lib/app/modules/EntityList/infra/locality/add_locality_form_controller.dart
Dart
www.github.com/Dojak220/nurse/tree/main/lib/app/modules/EntityList/infra/locality/add_locality_form_controller.dart
https://raw.githubusercontent.com/Dojak220/nurse/79aeee7/lib/app/modules/EntityList/infra/locality/add_locality_form_controller.dart
Dojak220/nurse 79aeee7 lib/app/modules/EntityList/infra/locality/add_locality_form_controller.dart
true
200
2,281
import "package:flutter/material.dart"; import "package:nurse/app/utils/add_form_controller.dart"; import "package:nurse/shared/models/infra/locality_model.dart"; import "package:nurse/shared/repositories/database/infra/database_locality_repository.dart"; import "package:nurse/shared/repositories/infra/locality_reposit...
4
DavisAGJD/smart_wallet_mobile
15ab306
src/lib/widgets/custom_text_field.dart
Dart
www.github.com/DavisAGJD/smart_wallet_mobile/tree/main/src/lib/widgets/custom_text_field.dart
https://raw.githubusercontent.com/DavisAGJD/smart_wallet_mobile/15ab306/src/lib/widgets/custom_text_field.dart
DavisAGJD/smart_wallet_mobile 15ab306 src/lib/widgets/custom_text_field.dart
true
200
2,235
import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; class CustomTextField extends StatelessWidget { final String label; final String hintText; final bool obscureText; final TextInputType? keyboardType; final TextEditingController? controller; // Agregar el parámetro contr...
7
Juka21/Mega-Cachorro
67ae0ca
lib/models/food.dart
Dart
www.github.com/Juka21/Mega-Cachorro/tree/main/lib/models/food.dart
https://raw.githubusercontent.com/Juka21/Mega-Cachorro/67ae0ca/lib/models/food.dart
Juka21/Mega-Cachorro 67ae0ca lib/models/food.dart
true
200
2,078
class Food { final int id; String imgUrl; String name; num price; List<Map<String, String>> ingredients; Food(this.id, this.imgUrl, this.name, this.price, this.ingredients, ); static List<Food> generateRecommendedFoods() { return [ Food( 1, 'assets...
3
gtiso/NTUA-HumanComputerInteraction
38c2ae0
adventurize/lib/pages/camera_page.dart
Dart
www.github.com/gtiso/NTUA-HumanComputerInteraction/tree/main/adventurize/lib/pages/camera_page.dart
https://raw.githubusercontent.com/gtiso/NTUA-HumanComputerInteraction/38c2ae0/adventurize/lib/pages/camera_page.dart
gtiso/NTUA-HumanComputerInteraction 38c2ae0 adventurize/lib/pages/camera_page.dart
true
200
4,626
import 'package:adventurize/models/user_model.dart'; import 'package:adventurize/models/challenge_model.dart'; import 'dart:io'; import 'package:camera/camera.dart'; import 'package:flutter/material.dart'; import 'package:adventurize/utils/navigation_utils.dart'; import 'package:adventurize/components/capture_button.da...
6
Mohamed-Ismail-Salah/E_learning_APP
9db68be
lib/Features/profile/Adminprofile/presentation/view/Admin_profile_view.dart
Dart
www.github.com/Mohamed-Ismail-Salah/E_learning_APP/tree/main/lib/Features/profile/Adminprofile/presentation/view/Admin_profile_view.dart
https://raw.githubusercontent.com/Mohamed-Ismail-Salah/E_learning_APP/9db68be/lib/Features/profile/Adminprofile/presentation/view/Admin_profile_view.dart
Mohamed-Ismail-Salah/E_learning_APP 9db68be lib/Features/profile/Adminprofile/presentation/view/Admin_profile_view.dart
true
200
389
import 'package:e_learning/Features/profile/Adminprofile/presentation/view/widget/Admin_Profile_view_body.dart'; import 'package:flutter/material.dart'; class AdminProfileView extends StatelessWidget{ const AdminProfileView({super.key}); @override Widget build(BuildContext context) { return const Scaffold...
5
enu-44/FlutterWalletNFC
06ca6fd
lib/layers/data/repositories/movement/movement_repository.dart
Dart
www.github.com/enu-44/FlutterWalletNFC/tree/main/lib/layers/data/repositories/movement/movement_repository.dart
https://raw.githubusercontent.com/enu-44/FlutterWalletNFC/06ca6fd/lib/layers/data/repositories/movement/movement_repository.dart
enu-44/FlutterWalletNFC 06ca6fd lib/layers/data/repositories/movement/movement_repository.dart
true
200
762
import 'package:pago_facil_app/layers/layers.dart'; class MovementRepository implements IMovementRepository { MovementRepository(this._http); final IHttpClient _http; static const baseUrl = APIPaths.baseUrl; @override Future<Either<Failure, List<Movement>>> list() async { final result = await _http.get...
2
Ha-r-Preet-Singh/e_commerce_app
e3f918b
lib/utils/theme/custom_themes/chip_theme.dart
Dart
www.github.com/Ha-r-Preet-Singh/e_commerce_app/tree/main/lib/utils/theme/custom_themes/chip_theme.dart
https://raw.githubusercontent.com/Ha-r-Preet-Singh/e_commerce_app/e3f918b/lib/utils/theme/custom_themes/chip_theme.dart
Ha-r-Preet-Singh/e_commerce_app e3f918b lib/utils/theme/custom_themes/chip_theme.dart
true
200
682
import 'package:flutter/material.dart'; class TChipTheme { TChipTheme._(); static ChipThemeData lightChipTheme = ChipThemeData( disabledColor: Colors.grey.withOpacity(0.4), labelStyle: const TextStyle(color: Colors.black), selectedColor: Colors.blue, padding: const EdgeInsets.symmetric(horizo...
0
Radhan-dev-2023/project_main
cb9bb1e
lib/model/latest nav model/latest_nav_model.dart
Dart
www.github.com/Radhan-dev-2023/project_main/tree/main/lib/model/latest nav model/latest_nav_model.dart
https://raw.githubusercontent.com/Radhan-dev-2023/project_main/cb9bb1e/lib/model/latest%20nav%20model/latest_nav_model.dart
Radhan-dev-2023/project_main cb9bb1e lib/model/latest nav model/latest_nav_model.dart
true
200
3,744
class LatestNavModel { int? status; String? statusMsg; String? navDate; String? msg; List<SchemeDetails>? schemeList; LatestNavModel({ this.status, this.statusMsg, this.navDate, this.msg, this.schemeList, }); factory LatestNavModel.fromJson(Map<String, dynamic> json) { List<dyn...
1
tamilfwk/tarapp
f6c0dd2
lib/pincommerce/pin/components/itemtype/itemtype_model.dart
Dart
www.github.com/tamilfwk/tarapp/tree/main/lib/pincommerce/pin/components/itemtype/itemtype_model.dart
https://raw.githubusercontent.com/tamilfwk/tarapp/f6c0dd2/lib/pincommerce/pin/components/itemtype/itemtype_model.dart
tamilfwk/tarapp f6c0dd2 lib/pincommerce/pin/components/itemtype/itemtype_model.dart
true
200
291
import '/flutter_flow/flutter_flow_util.dart'; import 'itemtype_widget.dart' show ItemtypeWidget; import 'package:flutter/material.dart'; class ItemtypeModel extends FlutterFlowModel<ItemtypeWidget> { @override void initState(BuildContext context) {} @override void dispose() {} }
4
slymackjr/rate-watcher
af44dd6
lib/standard_response.dart
Dart
www.github.com/slymackjr/rate-watcher/tree/main/lib/standard_response.dart
https://raw.githubusercontent.com/slymackjr/rate-watcher/af44dd6/lib/standard_response.dart
slymackjr/rate-watcher af44dd6 lib/standard_response.dart
true
200
2,522
import 'dart:convert'; import 'package:http/http.dart' as http; class StandardResponse { final String result; final String documentation; final String termsOfUse; final int timeLastUpdateUnix; final String timeLastUpdateUtc; final int timeNextUpdateUnix; final String timeNextUpdateUtc; final String bas...
7
helious23/tiktok_clone
90015bc
lib/features/authentication/login_form_screen.dart
Dart
www.github.com/helious23/tiktok_clone/tree/main/lib/features/authentication/login_form_screen.dart
https://raw.githubusercontent.com/helious23/tiktok_clone/90015bc/lib/features/authentication/login_form_screen.dart
helious23/tiktok_clone 90015bc lib/features/authentication/login_form_screen.dart
true
200
6,892
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:font_awesome_flutter/font_awesome_flutter.dart'; import 'package:tiktok_clone/constants/gaps.dart'; import 'package:tiktok_clone/constants/sizes.dart'; import 'package:tiktok_clone/features/authentication/widgets/form_button...
3
Mariamsamy26/khadamah_church
793c6cb
lib/layout/events/selectedToCamingScreen.dart
Dart
www.github.com/Mariamsamy26/khadamah_church/tree/main/lib/layout/events/selectedToCamingScreen.dart
https://raw.githubusercontent.com/Mariamsamy26/khadamah_church/793c6cb/lib/layout/events/selectedToCamingScreen.dart
Mariamsamy26/khadamah_church 793c6cb lib/layout/events/selectedToCamingScreen.dart
true
200
4,877
import 'package:church/model/child.dart'; import 'package:church/shared/components/appBar.dart'; import 'package:flutter/material.dart'; import '../../model/event.dart'; import '../../shared/components/customSearchDelegate.dart'; import '../../shared/components/custom_CustomCardListTile.dart'; import 'addPaynentDialog....
6
zakaria02/budget_manager
d721259
packages/transaction_summary/lib/feature/model/amount.dart
Dart
www.github.com/zakaria02/budget_manager/tree/main/packages/transaction_summary/lib/feature/model/amount.dart
https://raw.githubusercontent.com/zakaria02/budget_manager/d721259/packages/transaction_summary/lib/feature/model/amount.dart
zakaria02/budget_manager d721259 packages/transaction_summary/lib/feature/model/amount.dart
true
200
268
class Amount { String name; double value; Amount(this.name, this.value); } class BudgetSummaryMocks { static Amount balance = Amount("BALANCE", 100.0); static Amount income = Amount("INCOME", 130.0); static Amount expenses = Amount("EXPENSES", 160.0); }
5
OmarMustafaIsmail/future_hub
9d8f11f
lib/common/wallet/models/transaction_model.dart
Dart
www.github.com/OmarMustafaIsmail/future_hub/tree/main/lib/common/wallet/models/transaction_model.dart
https://raw.githubusercontent.com/OmarMustafaIsmail/future_hub/9d8f11f/lib/common/wallet/models/transaction_model.dart
OmarMustafaIsmail/future_hub 9d8f11f lib/common/wallet/models/transaction_model.dart
true
200
1,251
import 'package:future_hub/common/auth/models/user.dart'; import 'package:future_hub/common/shared/models/order_model.dart'; import 'package:equatable/equatable.dart'; class Transaction extends Equatable { final String id; final String title; final Wallet? wallet; final String transactionNumber; final String...
1
anasshahin/Flutter
a21dde7
state_management_project/lib/Getx/counter_pro.dart
Dart
www.github.com/anasshahin/Flutter/tree/main/state_management_project/lib/Getx/counter_pro.dart
https://raw.githubusercontent.com/anasshahin/Flutter/a21dde7/state_management_project/lib/Getx/counter_pro.dart
anasshahin/Flutter a21dde7 state_management_project/lib/Getx/counter_pro.dart
true
200
638
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:state_management_project/Getx/my_get_x.dart'; import 'dashboard.dart'; class CounterXPro extends StatelessWidget { CounterXPro({super.key}); final CounterController _counterController = Get.find(); @override Widget build(Bu...
0
Trelel129/tamiyochi
3bb89ca
lib/user_book.dart
Dart
www.github.com/Trelel129/tamiyochi/tree/main/lib/user_book.dart
https://raw.githubusercontent.com/Trelel129/tamiyochi/3bb89ca/lib/user_book.dart
Trelel129/tamiyochi 3bb89ca lib/user_book.dart
true
200
4,677
import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart'; import 'package:tamiyochi/page/book_detail_page.dart'; class UserBook extends StatefulWidget {...
4
karlreginaldoavyan/Mobile-App-Template
e0096c3
Reusable Widgets/lib/screens/loading_screen.dart
Dart
www.github.com/karlreginaldoavyan/Mobile-App-Template/tree/main/Reusable Widgets/lib/screens/loading_screen.dart
https://raw.githubusercontent.com/karlreginaldoavyan/Mobile-App-Template/e0096c3/Reusable%20Widgets/lib/screens/loading_screen.dart
karlreginaldoavyan/Mobile-App-Template e0096c3 Reusable Widgets/lib/screens/loading_screen.dart
true
200
1,142
import 'package:flutter/material.dart'; import 'package:general/general.dart'; class LoadingScreen extends StatefulWidget { const LoadingScreen({Key? key}) : super(key: key); @override State<LoadingScreen> createState() => _LoadingScreenState(); } class _LoadingScreenState extends State<LoadingScreen> { @ove...
7
ShAliZain/TitkTok-Clone
c8f05ef
lib/Views/screens/add_video_screen.dart
Dart
www.github.com/ShAliZain/TitkTok-Clone/tree/main/lib/Views/screens/add_video_screen.dart
https://raw.githubusercontent.com/ShAliZain/TitkTok-Clone/c8f05ef/lib/Views/screens/add_video_screen.dart
ShAliZain/TitkTok-Clone c8f05ef lib/Views/screens/add_video_screen.dart
true
200
3,123
import 'dart:io'; import 'package:flutter/material.dart'; import 'package:image_picker/image_picker.dart'; import 'package:tiktok_clone/Views/screens/confirm_screen.dart'; import 'package:tiktok_clone/constants.dart'; class AddVideoScreen extends StatelessWidget { const AddVideoScreen({super.key}); @ov...
3
mokh93/FilmyApp
364fd5c
lib/widgets/cridetCard.dart
Dart
www.github.com/mokh93/FilmyApp/tree/main/lib/widgets/cridetCard.dart
https://raw.githubusercontent.com/mokh93/FilmyApp/364fd5c/lib/widgets/cridetCard.dart
mokh93/FilmyApp 364fd5c lib/widgets/cridetCard.dart
true
200
1,681
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class cridetCard extends StatelessWidget { const cridetCard({ super.key, required this.cardColor, required this.topImage, required this.bottomImage, }); final Color cardColor; final String topImage; final String...
5
Rizkyepk/hmtk_app-master
cb958e9
lib/presentation/user/aspiration/menu_aspiration.dart
Dart
www.github.com/Rizkyepk/hmtk_app-master/tree/main/lib/presentation/user/aspiration/menu_aspiration.dart
https://raw.githubusercontent.com/Rizkyepk/hmtk_app-master/cb958e9/lib/presentation/user/aspiration/menu_aspiration.dart
Rizkyepk/hmtk_app-master cb958e9 lib/presentation/user/aspiration/menu_aspiration.dart
true
200
7,237
import 'dart:io'; import 'package:hmtk_app/utils/snapping_data.dart'; import 'package:http/http.dart' as http; import 'package:awesome_dialog/awesome_dialog.dart'; import 'package:flutter/material.dart'; import 'package:hmtk_app/presentation/user/aspiration/menu_riwayat_aspirasi.dart'; import 'package:hmtk_app/utils/u...
1
hanikanakri/Ecommerce-H
b25f292
lib/features/search/presentation/pages/search_page.dart
Dart
www.github.com/hanikanakri/Ecommerce-H/tree/main/lib/features/search/presentation/pages/search_page.dart
https://raw.githubusercontent.com/hanikanakri/Ecommerce-H/b25f292/lib/features/search/presentation/pages/search_page.dart
hanikanakri/Ecommerce-H b25f292 lib/features/search/presentation/pages/search_page.dart
true
200
3,828
import 'package:animated_conditional_builder/animated_conditional_builder.dart'; import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart'; import '/core/animations/grid_view_animation.dart'; import '...
2
miz2121/hashtag_qna_flutter
8879c0c
lib/app/ui/create/create_first/fragment/all_hashtags.dart
Dart
www.github.com/miz2121/hashtag_qna_flutter/tree/main/lib/app/ui/create/create_first/fragment/all_hashtags.dart
https://raw.githubusercontent.com/miz2121/hashtag_qna_flutter/8879c0c/lib/app/ui/create/create_first/fragment/all_hashtags.dart
miz2121/hashtag_qna_flutter 8879c0c lib/app/ui/create/create_first/fragment/all_hashtags.dart
true
200
5,790
import 'package:flutter/material.dart'; import 'package:hashtag_qna_flutter/app/ui/create/create_viewmodel.dart'; import 'package:hashtag_qna_flutter/app/util/component/no_data.dart'; import 'package:hashtag_qna_flutter/app/util/utility.dart'; import 'package:sizer/sizer.dart'; class AllHashtags extends StatefulWidget...
0
Hemeshk2004/hostelSync-Staff
4559e17
lib/Chat App/ChatPage.dart
Dart
www.github.com/Hemeshk2004/hostelSync-Staff/tree/main/lib/Chat App/ChatPage.dart
https://raw.githubusercontent.com/Hemeshk2004/hostelSync-Staff/4559e17/lib/Chat%20App/ChatPage.dart
Hemeshk2004/hostelSync-Staff 4559e17 lib/Chat App/ChatPage.dart
true
200
5,170
import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:firebase_core/firebase_core.dart'; import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:intl/intl.dart'; // Import for date forma...
4
victor-henrique-cardoso/aula-de-flutter
d110300
lib/componentes/transation_forme.dart
Dart
www.github.com/victor-henrique-cardoso/aula-de-flutter/tree/main/lib/componentes/transation_forme.dart
https://raw.githubusercontent.com/victor-henrique-cardoso/aula-de-flutter/d110300/lib/componentes/transation_forme.dart
victor-henrique-cardoso/aula-de-flutter d110300 lib/componentes/transation_forme.dart
true
200
1,675
import 'package:flutter/material.dart'; class TransationForme extends StatefulWidget { final void Function(String, double) onSubmit; TransationForme(this.onSubmit); @override State<TransationForme> createState() => _TransationFormeState(); } class _TransationFormeState extends State<TransationForme> { fina...
6
whysobusy/AnimeAyaya
c2d2487
lib/data/models/anime_info.dart
Dart
www.github.com/whysobusy/AnimeAyaya/tree/main/lib/data/models/anime_info.dart
https://raw.githubusercontent.com/whysobusy/AnimeAyaya/c2d2487/lib/data/models/anime_info.dart
whysobusy/AnimeAyaya c2d2487 lib/data/models/anime_info.dart
true
200
1,977
import 'package:anime_player/data/models/basic_anime.dart'; import 'package:html/dom.dart'; /// It has the info needed by AnimeGrid, it can either be `latest episode` or `an anime` class AnimeInfo extends BasicAnime { String? coverImage; // Either episode or release String? episode = '??'; bool isDUB...
7