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
momaher74/bookly_app
7d0e6e9
lib/features/splash_feature/presentaion/views/Splash_view.dart
Dart
www.github.com/momaher74/bookly_app/tree/main/lib/features/splash_feature/presentaion/views/Splash_view.dart
https://raw.githubusercontent.com/momaher74/bookly_app/7d0e6e9/lib/features/splash_feature/presentaion/views/Splash_view.dart
momaher74/bookly_app 7d0e6e9 lib/features/splash_feature/presentaion/views/Splash_view.dart
true
200
361
import 'package:flutter/material.dart'; import 'package:ninja_animation/features/splash_feature/presentaion/views/widget/splash_view_body.dart'; class SplashView extends StatelessWidget { const SplashView({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const Scaffold( ...
3
rouniayulla/webviewWithGetx
d1b6131
lib/main.dart
Dart
www.github.com/rouniayulla/webviewWithGetx/tree/main/lib/main.dart
https://raw.githubusercontent.com/rouniayulla/webviewWithGetx/d1b6131/lib/main.dart
rouniayulla/webviewWithGetx d1b6131 lib/main.dart
true
200
1,274
import 'package:flutter/material.dart'; import 'package:project1/hiveWithWebview.dart'; import 'package:project1/home.dart'; import 'package:project1/home_clone.dart'; import 'package:hive/hive.dart'; import 'package:path_provider/path_provider.dart'; Box? mybox; Future<Box> openBox(String BoxName) async{ if(!Hive.i...
1
yasindu10/Ecommerce-App-UI
b5dca5a
lib/components/category_card.dart
Dart
www.github.com/yasindu10/Ecommerce-App-UI/tree/main/lib/components/category_card.dart
https://raw.githubusercontent.com/yasindu10/Ecommerce-App-UI/b5dca5a/lib/components/category_card.dart
yasindu10/Ecommerce-App-UI b5dca5a lib/components/category_card.dart
true
200
1,138
import 'package:flutter/material.dart'; class CategoryCard extends StatelessWidget { final String title; final bool isActive; const CategoryCard({super.key, required this.title, required this.isActive}); @override Widget build(BuildContext context) { return Container( padding: const EdgeInsets.sym...
5
RakeshLohana/Task-App_Frontend-Flutter
18ce645
lib/widgets/dialog.dart
Dart
www.github.com/RakeshLohana/Task-App_Frontend-Flutter/tree/main/lib/widgets/dialog.dart
https://raw.githubusercontent.com/RakeshLohana/Task-App_Frontend-Flutter/18ce645/lib/widgets/dialog.dart
RakeshLohana/Task-App_Frontend-Flutter 18ce645 lib/widgets/dialog.dart
true
200
884
import 'package:flutter/material.dart'; class DialogBox extends StatelessWidget { final String title; final String description; const DialogBox({super.key, required this.title, required this.description}); @override Widget build(BuildContext context) { return TextButton( onPressed: () => showDialo...
2
tl27863/news
44c40df
lib/widgets/news_card.dart
Dart
www.github.com/tl27863/news/tree/main/lib/widgets/news_card.dart
https://raw.githubusercontent.com/tl27863/news/44c40df/lib/widgets/news_card.dart
tl27863/news 44c40df lib/widgets/news_card.dart
true
200
2,975
import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import 'package:news/utils/pallete.dart'; class NewsCard extends StatelessWidget { final snap; const NewsCard({Key? key, required this.snap}) : super(key: key); @override Widget build(BuildContext context) { return Container( m...
0
Naod-AB/Kabbee-Eclipse
138497f
quiz_app - Refactored/lib/ui/Screens/Auth/Signup/signup_email.dart
Dart
www.github.com/Naod-AB/Kabbee-Eclipse/tree/main/quiz_app - Refactored/lib/ui/Screens/Auth/Signup/signup_email.dart
https://raw.githubusercontent.com/Naod-AB/Kabbee-Eclipse/138497f/quiz_app%20-%20Refactored/lib/ui/Screens/Auth/Signup/signup_email.dart
Naod-AB/Kabbee-Eclipse 138497f quiz_app - Refactored/lib/ui/Screens/Auth/Signup/signup_email.dart
true
200
9,143
import 'package:email_validator/email_validator.dart'; import 'package:flutter/material.dart'; import 'package:font_awesome_flutter/font_awesome_flutter.dart'; import 'package:get/get.dart'; import 'package:quiz_app/ui/Screens/Auth/Controllers/users.dart'; import 'package:quiz_app/ui/utils/pallete.dart'; import 'packag...
6
Klevilela/quanto_custa_the
5c58e52
lib/view/locais/listar_experiencias_local.dart
Dart
www.github.com/Klevilela/quanto_custa_the/tree/main/lib/view/locais/listar_experiencias_local.dart
https://raw.githubusercontent.com/Klevilela/quanto_custa_the/5c58e52/lib/view/locais/listar_experiencias_local.dart
Klevilela/quanto_custa_the 5c58e52 lib/view/locais/listar_experiencias_local.dart
true
200
2,013
import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; class ListarExperienciasLocal extends StatelessWidget { final String estabelecimentoId; const ListarExperienciasLocal({super.key, required this.estabelecimentoId}); @override Widget build(BuildContext context) { ...
7
adib-Wageeh/EduEra
2472dce
lib/src/quick_access/presentation/widgets/quick_access_header.dart
Dart
www.github.com/adib-Wageeh/EduEra/tree/main/lib/src/quick_access/presentation/widgets/quick_access_header.dart
https://raw.githubusercontent.com/adib-Wageeh/EduEra/2472dce/lib/src/quick_access/presentation/widgets/quick_access_header.dart
adib-Wageeh/EduEra 2472dce lib/src/quick_access/presentation/widgets/quick_access_header.dart
true
200
456
import 'package:flutter/material.dart'; class QuickAccessHeader extends StatelessWidget { const QuickAccessHeader({ required this.image ,super.key,}); final String image; @override Widget build(BuildContext context) { return SizedBox( height: MediaQuery.of(context).size.height*0.4, child:...
4
Koredeee/shamo-commerce
5aaeb98
shamo/lib/pages/checkout_success_page.dart
Dart
www.github.com/Koredeee/shamo-commerce/tree/main/shamo/lib/pages/checkout_success_page.dart
https://raw.githubusercontent.com/Koredeee/shamo-commerce/5aaeb98/shamo/lib/pages/checkout_success_page.dart
Koredeee/shamo-commerce 5aaeb98 shamo/lib/pages/checkout_success_page.dart
true
200
2,580
import 'package:flutter/material.dart'; import 'package:shamo/theme.dart'; class CheckoutSuccessPage extends StatelessWidget { const CheckoutSuccessPage({super.key}); PreferredSizeWidget header() { return AppBar( backgroundColor: backgroundColor1, centerTitle: true, title: Text('Checkout Suc...
3
GateCoding/covoiturage_app
45bbfd1
lib/pages/add_offer.dart
Dart
www.github.com/GateCoding/covoiturage_app/tree/main/lib/pages/add_offer.dart
https://raw.githubusercontent.com/GateCoding/covoiturage_app/45bbfd1/lib/pages/add_offer.dart
GateCoding/covoiturage_app 45bbfd1 lib/pages/add_offer.dart
true
200
11,547
import 'dart:convert'; import 'dart:developer'; import 'dart:io'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:covoiturage/components/circle_button.dart'; import 'package:covoiturage/components/custom_app_bar.dart'; import 'package:covoiturage/components/toast_message.dart'; import 'package:c...
1
mrezafahleta/flutterbasic
dd22b3f
lib/pages/login.dart
Dart
www.github.com/mrezafahleta/flutterbasic/tree/main/lib/pages/login.dart
https://raw.githubusercontent.com/mrezafahleta/flutterbasic/dd22b3f/lib/pages/login.dart
mrezafahleta/flutterbasic dd22b3f lib/pages/login.dart
true
200
1,297
import 'package:belajarflutter/controller/counter.dart'; import 'package:belajarflutter/pages/counter.dart'; import 'package:belajarflutter/pages/posts.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; class Login extends StatelessWidget { const Login({super.key}); @override Widget b...
2
zhenzihui/Fi
9854814
lib/page/comment/comment_detail.dart
Dart
www.github.com/zhenzihui/Fi/tree/main/lib/page/comment/comment_detail.dart
https://raw.githubusercontent.com/zhenzihui/Fi/9854814/lib/page/comment/comment_detail.dart
zhenzihui/Fi 9854814 lib/page/comment/comment_detail.dart
true
200
1,883
import 'package:fi/api/model/response/comment/comment.dart'; import 'package:fi/component/comment/comment.dart'; import 'package:fi/component/comment/reply.dart'; import 'package:fi/ext/extendable_theme.dart'; import 'package:flutter/material.dart'; ///评论详情,展示一级评论和下面的回复 class CommentDetailPage extends StatelessWidget ...
5
DXS1808/project_demo
2bff81d
lib/presentation/view/home_screen/home_cubit/home_cubit.dart
Dart
www.github.com/DXS1808/project_demo/tree/main/lib/presentation/view/home_screen/home_cubit/home_cubit.dart
https://raw.githubusercontent.com/DXS1808/project_demo/2bff81d/lib/presentation/view/home_screen/home_cubit/home_cubit.dart
DXS1808/project_demo 2bff81d lib/presentation/view/home_screen/home_cubit/home_cubit.dart
true
200
5,210
import 'dart:async'; import 'package:bloc/bloc.dart'; import 'package:equatable/equatable.dart'; import 'package:flutter/foundation.dart'; import 'package:project_demo/config/constants.dart'; import 'package:project_demo/data/model/movie/movie.dart'; import 'package:project_demo/domain/usecase/movie_usecase.dart'; pa...
0
MUHAMMEDHISHAMCP/Netflix_clone
7ed9ba3
lib/presentation/search_page/widgets/main_card.dart
Dart
www.github.com/MUHAMMEDHISHAMCP/Netflix_clone/tree/main/lib/presentation/search_page/widgets/main_card.dart
https://raw.githubusercontent.com/MUHAMMEDHISHAMCP/Netflix_clone/7ed9ba3/lib/presentation/search_page/widgets/main_card.dart
MUHAMMEDHISHAMCP/Netflix_clone 7ed9ba3 lib/presentation/search_page/widgets/main_card.dart
true
200
505
import 'package:flutter/cupertino.dart'; class MainShowCard extends StatelessWidget { final String imageUrl; const MainShowCard({Key? key, required this.imageUrl}) : super(key: key); @override Widget build(BuildContext context) { return Container( decoration: BoxDecoration( image: Decorati...
7
GayathriThanishka/flutter-birds-app
a77c7fd
lib/listviewtask.dart
Dart
www.github.com/GayathriThanishka/flutter-birds-app/tree/main/lib/listviewtask.dart
https://raw.githubusercontent.com/GayathriThanishka/flutter-birds-app/a77c7fd/lib/listviewtask.dart
GayathriThanishka/flutter-birds-app a77c7fd lib/listviewtask.dart
true
200
1,194
import 'package:birdsapp/birdslist.dart'; import 'package:flutter/material.dart'; class ListviewTask extends StatefulWidget { const ListviewTask({super.key}); @override State<ListviewTask> createState() => _ListviewTaskState(); } class _ListviewTaskState extends State<ListviewTask> { @override Widget bu...
4
Season-of-Code-2023-MDG-Space/raptor-trio
aa1b407
lib/widgets/overlay_button.dart
Dart
www.github.com/Season-of-Code-2023-MDG-Space/raptor-trio/tree/main/lib/widgets/overlay_button.dart
https://raw.githubusercontent.com/Season-of-Code-2023-MDG-Space/raptor-trio/aa1b407/lib/widgets/overlay_button.dart
Season-of-Code-2023-MDG-Space/raptor-trio aa1b407 lib/widgets/overlay_button.dart
true
200
1,711
import 'package:flutter/material.dart'; import 'package:syncfusion_flutter_pdfviewer/pdfviewer.dart'; import 'package:docufind/utils/constants.dart'; class OverLayButton extends StatelessWidget implements PreferredSizeWidget { final String text; final PdfTextSelectionChangedDetails details; final int upFromGlob...
6
Joy569002/OcrApp
cb5908d
lib/constant/list.dart
Dart
www.github.com/Joy569002/OcrApp/tree/main/lib/constant/list.dart
https://raw.githubusercontent.com/Joy569002/OcrApp/cb5908d/lib/constant/list.dart
Joy569002/OcrApp cb5908d lib/constant/list.dart
true
200
2,055
final Map<String, String> languageMap = { 'en': 'English', 'es': 'Spanish', 'fr': 'French', 'de': 'German', 'it': 'Italian', 'pt': 'Portuguese', 'zh': 'Chinese', 'ja': 'Japanese', 'ko': 'Korean', 'ru': 'Russian', 'ar': 'Arabic', 'hi': 'Hindi', 'bn': 'Bengali', 'la': 'Latin', 'he': 'Hebrew'...
3
XXX1694/tanysu
e3945e6
lib/features/main_page/presentation/widgets/top_counter.dart
Dart
www.github.com/XXX1694/tanysu/tree/main/lib/features/main_page/presentation/widgets/top_counter.dart
https://raw.githubusercontent.com/XXX1694/tanysu/e3945e6/lib/features/main_page/presentation/widgets/top_counter.dart
XXX1694/tanysu e3945e6 lib/features/main_page/presentation/widgets/top_counter.dart
true
200
890
import 'package:flutter/material.dart'; class TopCounter extends StatelessWidget { const TopCounter({super.key, required this.count, required this.controller}); final int count; final TextEditingController controller; @override Widget build(BuildContext context) { return Row( children: List.generat...
1
suhailbehlim/flutterapp
a641d40
lib/providers/todo_providers.dart
Dart
www.github.com/suhailbehlim/flutterapp/tree/main/lib/providers/todo_providers.dart
https://raw.githubusercontent.com/suhailbehlim/flutterapp/a641d40/lib/providers/todo_providers.dart
suhailbehlim/flutterapp a641d40 lib/providers/todo_providers.dart
true
200
703
import 'package:flutter/material.dart'; import '../models/todo_models.dart'; import '../services/api_services.dart'; class TodoProvider with ChangeNotifier { List<Todo> _todos = []; List<Todo> get todos => _todos; Future<void> loadTodos() async { _todos = await ApiService.fetchTodos(); notif...
2
balajianainfo7/Libary-Management-System
897abbe
libary_anainfo/lib/chat/model/message.dart
Dart
www.github.com/balajianainfo7/Libary-Management-System/tree/main/libary_anainfo/lib/chat/model/message.dart
https://raw.githubusercontent.com/balajianainfo7/Libary-Management-System/897abbe/libary_anainfo/lib/chat/model/message.dart
balajianainfo7/Libary-Management-System 897abbe libary_anainfo/lib/chat/model/message.dart
true
200
533
class Message { final String message; final String socket_id; final String user_id; final String date; Message({ required this.message, required this.socket_id, required this.user_id, required this.date, }); factory Message.fromJson(Map<String, dynamic> message) { return Messag...
5
LilianKabool/aloudah_company
23bcb6a
lib/features/admin/presentation/screens/archived_employees_list_for_admin.dart
Dart
www.github.com/LilianKabool/aloudah_company/tree/main/lib/features/admin/presentation/screens/archived_employees_list_for_admin.dart
https://raw.githubusercontent.com/LilianKabool/aloudah_company/23bcb6a/lib/features/admin/presentation/screens/archived_employees_list_for_admin.dart
LilianKabool/aloudah_company 23bcb6a lib/features/admin/presentation/screens/archived_employees_list_for_admin.dart
true
200
664
import 'package:flutter/material.dart'; import '../widgets/build_archived_employees_list_for_admin.dart'; import '../widgets/divider_item.dart'; import '../widgets/search_archived_employee_button.dart'; import '../widgets/space_item.dart'; class ArchivedEmployeeListForAdmin extends StatelessWidget{ const Archived...
7
sitrsh12/flutter_bloc_counter
c583762
lib/features/home/counter_state.dart
Dart
www.github.com/sitrsh12/flutter_bloc_counter/tree/main/lib/features/home/counter_state.dart
https://raw.githubusercontent.com/sitrsh12/flutter_bloc_counter/c583762/lib/features/home/counter_state.dart
sitrsh12/flutter_bloc_counter c583762 lib/features/home/counter_state.dart
true
200
533
part of 'counter_bloc.dart'; class CounterState extends Equatable { final int counter; const CounterState({required this.counter}); @override List<Object> get props => [counter]; } class CounterInitial extends CounterState { const CounterInitial() : super(counter: 0); } class IncrementState extends Count...
4
dileepadev/sbvarks
2bee83b
studentprofiler/lib/pages/settings_page.dart
Dart
www.github.com/dileepadev/sbvarks/tree/main/studentprofiler/lib/pages/settings_page.dart
https://raw.githubusercontent.com/dileepadev/sbvarks/2bee83b/studentprofiler/lib/pages/settings_page.dart
dileepadev/sbvarks 2bee83b studentprofiler/lib/pages/settings_page.dart
true
200
6,096
import 'dart:developer'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:studentprofiler/pages/login_page.dart'; import 'package:studentprofiler/pages/privacy_policy_page.dart'; import 'package:studentprofiler/theme/app_theme.dart'; import '../services/fireba...
6
tamashathiruni/flutter_admin_panel
ab8c746
lib/screens/dashboard/components/manage_payments.dart
Dart
www.github.com/tamashathiruni/flutter_admin_panel/tree/main/lib/screens/dashboard/components/manage_payments.dart
https://raw.githubusercontent.com/tamashathiruni/flutter_admin_panel/ab8c746/lib/screens/dashboard/components/manage_payments.dart
tamashathiruni/flutter_admin_panel ab8c746 lib/screens/dashboard/components/manage_payments.dart
true
200
3,470
import 'package:admin/controllers/dtabse.dart'; // Import the correct controller import 'package:admin/models/user.dart'; // Import the correct model import 'package:flutter/material.dart'; class ManagePayments extends StatefulWidget { @override _ManagePaymentsState createState() => _ManagePaymentsState(); } clas...
3
defoibrahim/dafallah_nyt
eeba499
lib/features/articles/presentation/bloc/bloc/articles_state.dart
Dart
www.github.com/defoibrahim/dafallah_nyt/tree/main/lib/features/articles/presentation/bloc/bloc/articles_state.dart
https://raw.githubusercontent.com/defoibrahim/dafallah_nyt/eeba499/lib/features/articles/presentation/bloc/bloc/articles_state.dart
defoibrahim/dafallah_nyt eeba499 lib/features/articles/presentation/bloc/bloc/articles_state.dart
true
200
602
part of 'articles_bloc.dart'; abstract class ArticlesState extends Equatable { const ArticlesState(); @override List<Object> get props => []; } class ArticlesInitial extends ArticlesState {} class LoadingState extends ArticlesState {} class LoadedArticleState extends ArticlesState { final List<Article> arti...
5
rakabgs27/Flutter-App-List
f578aa4
lib/api/network.dart
Dart
www.github.com/rakabgs27/Flutter-App-List/tree/main/lib/api/network.dart
https://raw.githubusercontent.com/rakabgs27/Flutter-App-List/f578aa4/lib/api/network.dart
rakabgs27/Flutter-App-List f578aa4 lib/api/network.dart
true
200
2,333
import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:http/http.dart'; import 'package:shared_preferences/shared_preferences.dart'; class Network { final String _baseUrl = 'http://192.168.1.20:8000/api/'; final String token = ''; Future<Response> login(String email, String password, Stri...
0
ahlanz/jejak-alam-app
2876147
lib/pages/home/download_page.dart
Dart
www.github.com/ahlanz/jejak-alam-app/tree/main/lib/pages/home/download_page.dart
https://raw.githubusercontent.com/ahlanz/jejak-alam-app/2876147/lib/pages/home/download_page.dart
ahlanz/jejak-alam-app 2876147 lib/pages/home/download_page.dart
true
200
1,681
import 'package:flutter/material.dart'; import 'package:jejak_alam/Widget/download_card.dart'; import 'package:jejak_alam/theme.dart'; import '../../Widget/gridCard.dart'; import '../../Widget/searchbar.dart'; class DownloadPage extends StatelessWidget { const DownloadPage({super.key}); @override Widget build(...
7
haha1994/fulttertest
645bc85
lib/component/constant/app_router.dart
Dart
www.github.com/haha1994/fulttertest/tree/main/lib/component/constant/app_router.dart
https://raw.githubusercontent.com/haha1994/fulttertest/645bc85/lib/component/constant/app_router.dart
haha1994/fulttertest 645bc85 lib/component/constant/app_router.dart
true
200
7,633
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import '../../page...
4
Chandram-Dutta/smart_dhobi
d8fa5a5
lib/auth/auth_service.dart
Dart
www.github.com/Chandram-Dutta/smart_dhobi/tree/main/lib/auth/auth_service.dart
https://raw.githubusercontent.com/Chandram-Dutta/smart_dhobi/d8fa5a5/lib/auth/auth_service.dart
Chandram-Dutta/smart_dhobi d8fa5a5 lib/auth/auth_service.dart
true
200
1,312
// ignore_for_file: use_build_context_synchronously import 'package:appwrite/appwrite.dart'; import 'package:appwrite/models.dart' as models; import 'package:smart_dhobi/constants.dart'; class AuthService { late final Client client; late final Account _account; late final Future<models.Account> _userAccount; ...
1
codersanket/Flutter-Bloc-Pattern
d3b521a
lib/repositories/home_repository.dart
Dart
www.github.com/codersanket/Flutter-Bloc-Pattern/tree/main/lib/repositories/home_repository.dart
https://raw.githubusercontent.com/codersanket/Flutter-Bloc-Pattern/d3b521a/lib/repositories/home_repository.dart
codersanket/Flutter-Bloc-Pattern d3b521a lib/repositories/home_repository.dart
true
200
778
import 'dart:convert'; import 'package:infinity_box/model/index.dart'; import 'package:infinity_box/services/index.dart'; import './index.dart'; part 'home_repository_mapper.dart'; class HomeRepository extends BffRepository { final HomeService _homeService; HomeRepository(this._homeService); Future<ApiResul...
6
Jiheedd/epiece_shopping_app
78af5ae
lib/models/product.dart
Dart
www.github.com/Jiheedd/epiece_shopping_app/tree/main/lib/models/product.dart
https://raw.githubusercontent.com/Jiheedd/epiece_shopping_app/78af5ae/lib/models/product.dart
Jiheedd/epiece_shopping_app 78af5ae lib/models/product.dart
true
200
2,176
class ProductModel { late int _totalSize; late int _typeId; late int _offset; late List<Product> _products; ProductModel( {required int totalSize, required int typeId, required int offset, required List<Product> products}) { this._totalSize = totalSize; this._typeId = t...
3
abuubaida921/Flutter_e_learning_app
8fd528a
lib/presentation/chat_details_screen/controller/chat_details_controller.dart
Dart
www.github.com/abuubaida921/Flutter_e_learning_app/tree/main/lib/presentation/chat_details_screen/controller/chat_details_controller.dart
https://raw.githubusercontent.com/abuubaida921/Flutter_e_learning_app/8fd528a/lib/presentation/chat_details_screen/controller/chat_details_controller.dart
abuubaida921/Flutter_e_learning_app 8fd528a lib/presentation/chat_details_screen/controller/chat_details_controller.dart
true
200
432
import 'package:flutter_e_learning_app/core/app_export.dart'; import 'package:flutter/material.dart'; import '../models/chat_details_model.dart'; class ChatDetailsController extends GetxController { TextEditingController massageController = TextEditingController(); Rx<ChatDetailsModel> chatDetailsModelObj = Chat...
0
Luc1eSky/cis_game
d3efded
lib/dialogs/upload_dialog.dart
Dart
www.github.com/Luc1eSky/cis_game/tree/main/lib/dialogs/upload_dialog.dart
https://raw.githubusercontent.com/Luc1eSky/cis_game/d3efded/lib/dialogs/upload_dialog.dart
Luc1eSky/cis_game d3efded lib/dialogs/upload_dialog.dart
true
200
5,484
import 'package:cis_game/classes/game_results.dart'; import 'package:cis_game/dialogs/dialog_template.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import '../classes/game_result.dart'; import '../localData...
5
jsmile/bloc_payload
8834d19
lib/blocs/theme/theme_event.dart
Dart
www.github.com/jsmile/bloc_payload/tree/main/lib/blocs/theme/theme_event.dart
https://raw.githubusercontent.com/jsmile/bloc_payload/8834d19/lib/blocs/theme/theme_event.dart
jsmile/bloc_payload 8834d19 lib/blocs/theme/theme_event.dart
true
200
480
part of 'theme_bloc.dart'; abstract class ThemeEvent extends Equatable { const ThemeEvent(); @override List<Object> get props => []; } class ThemeChangedEvent extends ThemeEvent { final int randInt; const ThemeChangedEvent( {required this.randInt}); // rndInt 에 따라서 theme 가 변경되도록 event 를 사용하여 전달 @...
7
maxwellcatoo/flutter_practice
9a181cf
lib/official_widget/menu_list_entrance.dart
Dart
www.github.com/maxwellcatoo/flutter_practice/tree/main/lib/official_widget/menu_list_entrance.dart
https://raw.githubusercontent.com/maxwellcatoo/flutter_practice/9a181cf/lib/official_widget/menu_list_entrance.dart
maxwellcatoo/flutter_practice 9a181cf lib/official_widget/menu_list_entrance.dart
true
200
1,908
import 'package:flutter/material.dart'; import 'package:flutter_practice/official_widget/notifier/notifier_menu.dart'; import 'package:flutter_practice/official_widget/progress_indicator/progress_indicator_menu.dart'; import '_common/common_widget.dart'; import '_common/label_widget.dart'; import 'button/button_menu.da...
4
nitinbhalala/labham_group_app
5c79b79
lib/views/pages/Estimate/create_estimate.dart
Dart
www.github.com/nitinbhalala/labham_group_app/tree/main/lib/views/pages/Estimate/create_estimate.dart
https://raw.githubusercontent.com/nitinbhalala/labham_group_app/5c79b79/lib/views/pages/Estimate/create_estimate.dart
nitinbhalala/labham_group_app 5c79b79 lib/views/pages/Estimate/create_estimate.dart
true
200
8,241
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:minimall_store/views/pages/Estimate/add_prodcut_page.dart'; import 'package:sizer/sizer.dart'; import '../../../Localization/app_localization.dart'; import '../../../constants/app_colors.dart'; import '../../../constants/app...
2
nimeshayasith/StressFreeZone_mobile
3cab24d
lib/screens/tracker/tracker.dart
Dart
www.github.com/nimeshayasith/StressFreeZone_mobile/tree/main/lib/screens/tracker/tracker.dart
https://raw.githubusercontent.com/nimeshayasith/StressFreeZone_mobile/3cab24d/lib/screens/tracker/tracker.dart
nimeshayasith/StressFreeZone_mobile 3cab24d lib/screens/tracker/tracker.dart
true
200
1,192
import 'package:flutter/material.dart'; class Tracker with ChangeNotifier { double _totalDistance = 0.00; double _walkingDistance = 0.00; double _runningDistance = 0.00; double _caloriesBurned = 0.00; double _waterIntake = 0.00; final double _waterGoal = 6.00; double get totalDistance => _totalDistance;...
1
saliq03/My_Portfolio
12589fb
lib/components/home.dart
Dart
www.github.com/saliq03/My_Portfolio/tree/main/lib/components/home.dart
https://raw.githubusercontent.com/saliq03/My_Portfolio/12589fb/lib/components/home.dart
saliq03/My_Portfolio 12589fb lib/components/home.dart
true
200
1,720
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; class Home extends StatefulWidget{ const Home({Key? key}) : super(key: key); State<Home> createState()=> HomeState(); } class HomeState extends State<Home>{ @override Widget build(BuildConte...
0
Satellite-im/Uplink-Mobile
6397534
lib/auth/data/repositories/authentication_impl.repository.dart
Dart
www.github.com/Satellite-im/Uplink-Mobile/tree/main/lib/auth/data/repositories/authentication_impl.repository.dart
https://raw.githubusercontent.com/Satellite-im/Uplink-Mobile/6397534/lib/auth/data/repositories/authentication_impl.repository.dart
Satellite-im/Uplink-Mobile 6397534 lib/auth/data/repositories/authentication_impl.repository.dart
true
200
2,167
import 'dart:developer'; import 'package:uplink/auth/data/datasource/auth_local_data.local_datasource.dart'; import 'package:uplink/auth/data/datasource/warp_current_user_data.remote_datasource.dart'; import 'package:uplink/auth/data/repositories/authentication.repository.dart'; import 'package:uplink/shared/domain/en...
5
Omar-Mohamed5029/e-commerce-Flutter
03be2b2
lib/screens/drawer/shoppingcart.dart
Dart
www.github.com/Omar-Mohamed5029/e-commerce-Flutter/tree/main/lib/screens/drawer/shoppingcart.dart
https://raw.githubusercontent.com/Omar-Mohamed5029/e-commerce-Flutter/03be2b2/lib/screens/drawer/shoppingcart.dart
Omar-Mohamed5029/e-commerce-Flutter 03be2b2 lib/screens/drawer/shoppingcart.dart
true
200
4,212
import 'package:flutter/material.dart'; import 'package:flutter_course/screens/bottomNavBar/search.dart'; import 'package:flutter_course/widgets/item.dart'; import 'package:flutter_course/widgets/searchmap.dart'; class ShoppingCart extends StatefulWidget { @override _ShoppingCartState createState() => _ShoppingCart...
6
CaoThuHuyen/Product_Manager
be733c4
lib/firebase_options.dart
Dart
www.github.com/CaoThuHuyen/Product_Manager/tree/main/lib/firebase_options.dart
https://raw.githubusercontent.com/CaoThuHuyen/Product_Manager/be733c4/lib/firebase_options.dart
CaoThuHuyen/Product_Manager be733c4 lib/firebase_options.dart
true
200
3,105
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions; import 'package:flutter/foundation.dart' show defaultTargetPlatform, kIsWeb, TargetPlatform; /// Default [FirebaseOptions] for use with your Firebase apps. class DefaultFirebaseOptions { static FirebaseOptions get currentPlatform { if (k...
7
hunani/plannr_application
2d1fd88
lib/ui/screen/categories/model/create_model.dart
Dart
www.github.com/hunani/plannr_application/tree/main/lib/ui/screen/categories/model/create_model.dart
https://raw.githubusercontent.com/hunani/plannr_application/2d1fd88/lib/ui/screen/categories/model/create_model.dart
hunani/plannr_application 2d1fd88 lib/ui/screen/categories/model/create_model.dart
true
200
641
class CreateModel { CreateList data; CreateModel({ required this.data, }); factory CreateModel.fromJson(Map<String, dynamic> json) => CreateModel( data: CreateList.fromJson(json["data"]), ); Map<String, dynamic> toJson() => { "data": data.toJson(), }; } class CreateList { ...
4
obutora/easy_animate
794360e
lib/easy_animate_platform_interface.dart
Dart
www.github.com/obutora/easy_animate/tree/main/lib/easy_animate_platform_interface.dart
https://raw.githubusercontent.com/obutora/easy_animate/794360e/lib/easy_animate_platform_interface.dart
obutora/easy_animate 794360e lib/easy_animate_platform_interface.dart
true
200
988
import 'package:plugin_platform_interface/plugin_platform_interface.dart'; import 'easy_animate_method_channel.dart'; abstract class EasyAnimatePlatform extends PlatformInterface { /// Constructs a EasyAnimatePlatform. EasyAnimatePlatform() : super(token: _token); static final Object _token = Object(); stat...
2
abderrahmanebouzeghaia/Dataset_Generator_App
e749906
recorder_data-main/lib/voice_recorder.dart
Dart
www.github.com/abderrahmanebouzeghaia/Dataset_Generator_App/tree/main/recorder_data-main/lib/voice_recorder.dart
https://raw.githubusercontent.com/abderrahmanebouzeghaia/Dataset_Generator_App/e749906/recorder_data-main/lib/voice_recorder.dart
abderrahmanebouzeghaia/Dataset_Generator_App e749906 recorder_data-main/lib/voice_recorder.dart
true
200
6,044
import 'dart:io'; import 'package:flutter_sound/flutter_sound.dart'; import 'package:flutter/material.dart'; import 'package:googleapis/drive/v3.dart' as drive; import 'package:google_sign_in/google_sign_in.dart'; import 'package:googleapis_auth/auth_io.dart'; import 'package:http/http.dart' as http; import 'package:p...
3
WalidSellami/trademarket_app
81fc435
lib/shared/notification/Notifications.dart
Dart
www.github.com/WalidSellami/trademarket_app/tree/main/lib/shared/notification/Notifications.dart
https://raw.githubusercontent.com/WalidSellami/trademarket_app/81fc435/lib/shared/notification/Notifications.dart
WalidSellami/trademarket_app 81fc435 lib/shared/notification/Notifications.dart
true
200
1,927
import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter_local_notifications/flutter_local_notifications.dart'; import 'package:trade_market_app/data/models/dataModel/DataModel.dart'; class Notifications { final FlutterLocalNotificationsPlugin fl...
1
nidanaz0324/Assignment4
4d6088f
question17.dart
Dart
www.github.com/nidanaz0324/Assignment4/tree/main/question17.dart
https://raw.githubusercontent.com/nidanaz0324/Assignment4/4d6088f/question17.dart
nidanaz0324/Assignment4 4d6088f question17.dart
true
200
532
import 'dart:io'; void main() { String correctEmail = 'nida123@gmail.com'; String correctPassword = '123456'; bool isLoggedIn = false; while (!isLoggedIn) { print('Enter your email: '); String email = stdin.readLineSync()!; print('Enter your password: '); String password = stdin.readLineSync()!...
5
darkdragon276/chatott
3a03121
lib/domain/use_cases/sign_in_uc.dart
Dart
www.github.com/darkdragon276/chatott/tree/main/lib/domain/use_cases/sign_in_uc.dart
https://raw.githubusercontent.com/darkdragon276/chatott/3a03121/lib/domain/use_cases/sign_in_uc.dart
darkdragon276/chatott 3a03121 lib/domain/use_cases/sign_in_uc.dart
true
200
586
import 'package:chatott/domain/entities/user.dart'; import 'package:chatott/domain/repositories/auth_repository.dart'; class SignInUseCase { final AuthRepository repository; SignInUseCase({required this.repository}); Future<User> call(SignInParams params) async { try { return await repository.signIn(...
0
CompanyOmTech/booking_management
ceb25fa
lib/vendor_side/screens/vendor_notification_screen/vendor_notification_screen_widgets.dart
Dart
www.github.com/CompanyOmTech/booking_management/tree/main/lib/vendor_side/screens/vendor_notification_screen/vendor_notification_screen_widgets.dart
https://raw.githubusercontent.com/CompanyOmTech/booking_management/ceb25fa/lib/vendor_side/screens/vendor_notification_screen/vendor_notification_screen_widgets.dart
CompanyOmTech/booking_management ceb25fa lib/vendor_side/screens/vendor_notification_screen/vendor_notification_screen_widgets.dart
true
200
3,497
import 'package:booking_management/vendor_side/controllers/vendor_notification_screen_controller/vendor_notification_screen_controller.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../../../common_modules/constants/app_images.dart'; import '../../../user_side/model/booking_succes...
6
wai-lin-tun/E-commerce-App
8fb5c09
lib/screens/profile/components/body.dart
Dart
www.github.com/wai-lin-tun/E-commerce-App/tree/main/lib/screens/profile/components/body.dart
https://raw.githubusercontent.com/wai-lin-tun/E-commerce-App/8fb5c09/lib/screens/profile/components/body.dart
wai-lin-tun/E-commerce-App 8fb5c09 lib/screens/profile/components/body.dart
true
200
4,786
import 'package:ecommerce_app/constants.dart'; import 'package:ecommerce_app/screens/profile/components/controller.dart'; import 'package:ecommerce_app/screens/profile/components/setting.dart'; import 'package:ecommerce_app/widgets/profile_menu.dart'; import 'package:ecommerce_app/screens/profile/components/profile_pic...
7
Bahaa-eddine-MB/News-app
c41a669
lib/NewsApp/domain/usecases/get_recent_articles_usecase.dart
Dart
www.github.com/Bahaa-eddine-MB/News-app/tree/main/lib/NewsApp/domain/usecases/get_recent_articles_usecase.dart
https://raw.githubusercontent.com/Bahaa-eddine-MB/News-app/c41a669/lib/NewsApp/domain/usecases/get_recent_articles_usecase.dart
Bahaa-eddine-MB/News-app c41a669 lib/NewsApp/domain/usecases/get_recent_articles_usecase.dart
true
200
883
import 'package:dartz/dartz.dart'; import 'package:equatable/equatable.dart'; import 'package:news_app/NewsApp/domain/entities/Article.dart'; import '../../../core/error/failure.dart'; import '../../../core/usecases/base_usecase.dart'; import '../repository/base_news_repository.dart'; class GetRecentArticles exte...
4
ErikMaia/Dart-Week
846936b
delivery_app/lib/App/pages/product_detail/product_datail_router.dart
Dart
www.github.com/ErikMaia/Dart-Week/tree/main/delivery_app/lib/App/pages/product_detail/product_datail_router.dart
https://raw.githubusercontent.com/ErikMaia/Dart-Week/846936b/delivery_app/lib/App/pages/product_detail/product_datail_router.dart
ErikMaia/Dart-Week 846936b delivery_app/lib/App/pages/product_detail/product_datail_router.dart
true
200
575
import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'product_datail_controler.dart'; import 'product_datail_page.dart'; class ProductDetailRouter { static Widget get page => MultiProvider( providers: [ Provider(create: (context) => ProductDetailControler()), ...
2
QaziBilal/quickly_delivery_app_ui
64a18e3
lib/src/views/profile/profile.dart
Dart
www.github.com/QaziBilal/quickly_delivery_app_ui/tree/main/lib/src/views/profile/profile.dart
https://raw.githubusercontent.com/QaziBilal/quickly_delivery_app_ui/64a18e3/lib/src/views/profile/profile.dart
QaziBilal/quickly_delivery_app_ui 64a18e3 lib/src/views/profile/profile.dart
true
200
4,649
import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:quickly_delivery_man/src/utils/icons.dart'; import 'package:quickly_delivery_man/src/utils/images.dart'; import 'package:quickly_delivery_man/src/views/profile/p...
1
ahmedghaly15/Linkup
4f6df02
lib/features/auth/domain/entities/create_user_params.dart
Dart
www.github.com/ahmedghaly15/Linkup/tree/main/lib/features/auth/domain/entities/create_user_params.dart
https://raw.githubusercontent.com/ahmedghaly15/Linkup/4f6df02/lib/features/auth/domain/entities/create_user_params.dart
ahmedghaly15/Linkup 4f6df02 lib/features/auth/domain/entities/create_user_params.dart
true
200
374
import 'package:equatable/equatable.dart'; class CreateUserParams extends Equatable { final String name; final String email; final String phone; final String uId; const CreateUserParams({ required this.name, required this.email, required this.phone, required this.uId, }); @override Li...
3
queirozmat/todo_app
323ad40
lib/repository/todo_api.dart
Dart
www.github.com/queirozmat/todo_app/tree/main/lib/repository/todo_api.dart
https://raw.githubusercontent.com/queirozmat/todo_app/323ad40/lib/repository/todo_api.dart
queirozmat/todo_app 323ad40 lib/repository/todo_api.dart
true
200
2,126
import 'dart:convert'; import 'package:http/http.dart' as http; import 'package:todo_app/models/todo_model.dart'; import 'package:todo_app/repository/repository.dart'; class TodoApi extends Repository { Future<List<TodoModel>> getTodoList() async { Uri uri = getUriAPI('/tarefas'); try { final respons...
0
hakouguelfen/anzar
4aeeb04
lib/core/config/ui.dart
Dart
www.github.com/hakouguelfen/anzar/tree/main/lib/core/config/ui.dart
https://raw.githubusercontent.com/hakouguelfen/anzar/4aeeb04/lib/core/config/ui.dart
hakouguelfen/anzar 4aeeb04 lib/core/config/ui.dart
true
200
857
import 'package:flutter/material.dart'; import 'constant/palette.dart'; import 'constant/sizes.dart'; class UI { static OutlineInputBorder outlineInputBorder = OutlineInputBorder( borderSide: BorderSide( color: Palette.primaryColor.withOpacity(0.5), width: 1, ), borderRadius: BorderRadius.ci...
5
aboodalkouz/news_app
135e955
lib/main.dart
Dart
www.github.com/aboodalkouz/news_app/tree/main/lib/main.dart
https://raw.githubusercontent.com/aboodalkouz/news_app/135e955/lib/main.dart
aboodalkouz/news_app 135e955 lib/main.dart
true
200
528
import 'package:bloc/bloc.dart'; import 'package:flutter/material.dart'; import 'package:todo/shared/bloc_observer.dart'; import 'layout/home_layout.dart'; void main() { BlocOverrides.runZoned( () { runApp(const MyApp()); }, blocObserver: MyBlocObserver(), ); } class MyApp extends StatelessWi...
6
LUSEDOU/u_search
0880956
lib/sign_up/cubit/sign_up_cubit.dart
Dart
www.github.com/LUSEDOU/u_search/tree/main/lib/sign_up/cubit/sign_up_cubit.dart
https://raw.githubusercontent.com/LUSEDOU/u_search/0880956/lib/sign_up/cubit/sign_up_cubit.dart
LUSEDOU/u_search 0880956 lib/sign_up/cubit/sign_up_cubit.dart
true
200
3,037
import 'package:authentication_repository/authentication_repository.dart'; import 'package:bloc/bloc.dart'; import 'package:data_repository/data_repository.dart' as data; import 'package:equatable/equatable.dart'; import 'package:form_inputs/form_inputs.dart'; import 'package:formz/formz.dart'; import 'package:u_searc...
7
zaefrul/metadata-gfm
052f6f0
lib/controller/Homepage/homepage.dart
Dart
www.github.com/zaefrul/metadata-gfm/tree/main/lib/controller/Homepage/homepage.dart
https://raw.githubusercontent.com/zaefrul/metadata-gfm/052f6f0/lib/controller/Homepage/homepage.dart
zaefrul/metadata-gfm 052f6f0 lib/controller/Homepage/homepage.dart
true
200
8,675
import 'package:flutter/material.dart'; import 'package:gfm_gems/controller/Storekeeper/utils/constant.dart'; import 'package:gfm_gems/controller/Storekeeper/utils/widget/dialog.dart'; import 'package:gfm_gems/model/user.dart'; import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:gfm_gems/utils/...
2
En0ri4n/Les-Loups-garous-de-Thiercelieux
84dcc70
lib/main.dart
Dart
www.github.com/En0ri4n/Les-Loups-garous-de-Thiercelieux/tree/main/lib/main.dart
https://raw.githubusercontent.com/En0ri4n/Les-Loups-garous-de-Thiercelieux/84dcc70/lib/main.dart
En0ri4n/Les-Loups-garous-de-Thiercelieux 84dcc70 lib/main.dart
true
200
529
import 'package:flutter/material.dart'; import 'screens/home_screen.dart'; void main() { runApp(const WerewolvesApp()); } class WerewolvesApp extends StatelessWidget { const WerewolvesApp({super.key}); static bool isDebug = false; // This widget is the root of your application. @override Widget build(B...
4
haitt173508/chat
95971ec
lib/common/blocs/user_info_bloc/repo/user_info_repo.dart
Dart
www.github.com/haitt173508/chat/tree/main/lib/common/blocs/user_info_bloc/repo/user_info_repo.dart
https://raw.githubusercontent.com/haitt173508/chat/95971ec/lib/common/blocs/user_info_bloc/repo/user_info_repo.dart
haitt173508/chat 95971ec lib/common/blocs/user_info_bloc/repo/user_info_repo.dart
true
200
7,454
import 'dart:async'; import 'dart:convert'; import 'package:chat_365/core/constants/api_path.dart'; import 'package:chat_365/core/constants/chat_socket_event.dart'; import 'package:chat_365/core/interfaces/interface_user_info.dart'; import 'package:chat_365/main.dart'; import 'package:chat_365/modules/auth/modules/log...
1
Kevin5621/iot_smart_irigation
9eeb3c2
mobile_app/lib/presentation/home/widgets/control_section.dart
Dart
www.github.com/Kevin5621/iot_smart_irigation/tree/main/mobile_app/lib/presentation/home/widgets/control_section.dart
https://raw.githubusercontent.com/Kevin5621/iot_smart_irigation/9eeb3c2/mobile_app/lib/presentation/home/widgets/control_section.dart
Kevin5621/iot_smart_irigation 9eeb3c2 mobile_app/lib/presentation/home/widgets/control_section.dart
true
200
3,492
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:smart_irigation/presentation/home/home.dart'; import 'package:smart_irigation/service/iot_service.dart'; import 'package:smart_irigation/utils/button.dart'; class BuildControlSection extends StatefulWidget { final IoTServ...
3
Edil-Ayehu/e_learning
dc3d805
lib/view/splash page/splash_page.dart
Dart
www.github.com/Edil-Ayehu/e_learning/tree/main/lib/view/splash page/splash_page.dart
https://raw.githubusercontent.com/Edil-Ayehu/e_learning/dc3d805/lib/view/splash%20page/splash_page.dart
Edil-Ayehu/e_learning dc3d805 lib/view/splash page/splash_page.dart
true
200
2,878
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:e_learning/controllers/splash_controller.dart'; import 'package:e_learning/utils/app_colors.dart'; class SplashPage extends StatelessWidget { const SplashPage({super.key}); @override Widget build(BuildContext context) { /...
5
lithoykai/workshop_app
c32698b
lib/data/models/collaborator/collaborator_mapper.dart
Dart
www.github.com/lithoykai/workshop_app/tree/main/lib/data/models/collaborator/collaborator_mapper.dart
https://raw.githubusercontent.com/lithoykai/workshop_app/c32698b/lib/data/models/collaborator/collaborator_mapper.dart
lithoykai/workshop_app c32698b lib/data/models/collaborator/collaborator_mapper.dart
true
200
456
import 'package:desafiofast/data/models/collaborator/collaborator_model.dart'; import 'package:desafiofast/domain/entities/collaborator_entity.dart'; CollaboratorModel $CollaboratorModelFromEntity(CollaboratorEntity entity) { return CollaboratorModel( name: entity.name, id: entity.id, ); } CollaboratorEnt...
6
Eshetugirma/MightyBlog-Codebase
064de24
blog_application_aastu_grp3/lib/features/get_article/presentation/widgets/blog_card.dart
Dart
www.github.com/Eshetugirma/MightyBlog-Codebase/tree/main/blog_application_aastu_grp3/lib/features/get_article/presentation/widgets/blog_card.dart
https://raw.githubusercontent.com/Eshetugirma/MightyBlog-Codebase/064de24/blog_application_aastu_grp3/lib/features/get_article/presentation/widgets/blog_card.dart
Eshetugirma/MightyBlog-Codebase 064de24 blog_application_aastu_grp3/lib/features/get_article/presentation/widgets/blog_card.dart
true
200
2,240
import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; class MyBlogCard extends StatelessWidget { const MyBlogCard({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: Container( margin: const EdgeInsets.all(10), padding: const E...
2
msafeiyahya96/dicoding-id-camp-2024-dart-code
36d40ff
bin/03_dart_fundamental/03_data_types.dart
Dart
www.github.com/msafeiyahya96/dicoding-id-camp-2024-dart-code/tree/main/bin/03_dart_fundamental/03_data_types.dart
https://raw.githubusercontent.com/msafeiyahya96/dicoding-id-camp-2024-dart-code/36d40ff/bin/03_dart_fundamental/03_data_types.dart
msafeiyahya96/dicoding-id-camp-2024-dart-code 36d40ff bin/03_dart_fundamental/03_data_types.dart
true
200
1,197
/* Tipe Data Dart Tipe | Deskripsi | Contoh int | Integer | 5, -7, 0 num | Bilangan Bulat dan Bilangan Desimal | 5, 3.14, -99.00 double | Bilangan Desimal | 3.14, 18.0, -12.12 ...
4
sachyuth08/safeswap-copy
fa4de51
lib/views/sign_view.dart
Dart
www.github.com/sachyuth08/safeswap-copy/tree/main/lib/views/sign_view.dart
https://raw.githubusercontent.com/sachyuth08/safeswap-copy/fa4de51/lib/views/sign_view.dart
sachyuth08/safeswap-copy fa4de51 lib/views/sign_view.dart
true
200
4,552
import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:shared_preferences/shared_preferences.dart'; import '../view_models/auth_view_model.dart'; import 'home_view.dart'; class SignView extends StatefulWidget { const SignView({super.key}); @override SignViewState create...
0
Aditya1101999/accountsntax_app
554a772
lib/screens/otp_screen.dart
Dart
www.github.com/Aditya1101999/accountsntax_app/tree/main/lib/screens/otp_screen.dart
https://raw.githubusercontent.com/Aditya1101999/accountsntax_app/554a772/lib/screens/otp_screen.dart
Aditya1101999/accountsntax_app 554a772 lib/screens/otp_screen.dart
true
200
4,575
import 'package:accountsntax/utils/routes.dart'; import 'package:flutter/material.dart'; import 'otp_verification_screen.dart'; class OTPScreen extends StatefulWidget { const OTPScreen({super.key}); @override State<OTPScreen> createState() => _OTPScreenState(); } class _OTPScreenState extends State<OTPScreen>...
1
DevPalsanawala/Gemini_in_Flutter
07072de
lib/src/screens/profile/profile_screen.dart
Dart
www.github.com/DevPalsanawala/Gemini_in_Flutter/tree/main/lib/src/screens/profile/profile_screen.dart
https://raw.githubusercontent.com/DevPalsanawala/Gemini_in_Flutter/07072de/lib/src/screens/profile/profile_screen.dart
DevPalsanawala/Gemini_in_Flutter 07072de lib/src/screens/profile/profile_screen.dart
true
200
3,800
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:line_awesome_flutter/line_awesome_flutter.dart'; import 'package:myapp/src/constants/color.dart'; import 'package:myapp/src/constants/size.dart'; import 'package:myapp/src/screens/profile/widget/profile_menu.dart'; import 'package:m...
3
doppeltilde/engine-v0.1
e0de67f
lib/components/visualnovel/user_interface/vn_img_builder.dart
Dart
www.github.com/doppeltilde/engine-v0.1/tree/main/lib/components/visualnovel/user_interface/vn_img_builder.dart
https://raw.githubusercontent.com/doppeltilde/engine-v0.1/e0de67f/lib/components/visualnovel/user_interface/vn_img_builder.dart
doppeltilde/engine-v0.1 e0de67f lib/components/visualnovel/user_interface/vn_img_builder.dart
true
200
8,215
import 'package:flutter/material.dart'; import 'package:rive/rive.dart'; class ImageBuilder extends StatefulWidget { final centerImage; final bool? hasAnimation; final animationName; ImageBuilder({ Key? key, this.centerImage, this.hasAnimation, this.animationName, }) : super(key: key); @ov...
5
supa-modo/FlutterAppProject-4.0
e044602
teamp_app/lib/screens/onBoardingScreen/components/onBoardContent.dart
Dart
www.github.com/supa-modo/FlutterAppProject-4.0/tree/main/teamp_app/lib/screens/onBoardingScreen/components/onBoardContent.dart
https://raw.githubusercontent.com/supa-modo/FlutterAppProject-4.0/e044602/teamp_app/lib/screens/onBoardingScreen/components/onBoardContent.dart
supa-modo/FlutterAppProject-4.0 e044602 teamp_app/lib/screens/onBoardingScreen/components/onBoardContent.dart
true
200
831
import 'package:flutter/material.dart'; import '../../../constants.dart'; import '../../../sizeConfig.dart'; class OnboardContent extends StatelessWidget { const OnboardContent({ Key? key, this.text, }) : super(key: key); final String? text; //****image @override Widget build(BuildContext context) ...
6
Mohammedalhefawe/rich-food
148b4a9
lib/modules/sales_man/features/trips/custom_day_trips/custom_day_trips_controller.dart
Dart
www.github.com/Mohammedalhefawe/rich-food/tree/main/lib/modules/sales_man/features/trips/custom_day_trips/custom_day_trips_controller.dart
https://raw.githubusercontent.com/Mohammedalhefawe/rich-food/148b4a9/lib/modules/sales_man/features/trips/custom_day_trips/custom_day_trips_controller.dart
Mohammedalhefawe/rich-food 148b4a9 lib/modules/sales_man/features/trips/custom_day_trips/custom_day_trips_controller.dart
true
200
5,099
import 'package:flutter/widgets.dart'; import 'package:get/get_state_manager/src/simple/get_controllers.dart'; import 'package:get_storage/get_storage.dart'; import 'package:rich_food/modules/sales_man/models/day_trip_model.dart'; import 'package:rich_food/shared/widgets/snackBar.dart'; import 'package:rich_food/utils/...
2
MealTokTok/MealTokTok-App
3da0e6c
lib/screen/5_order/3_order_state_delivered.dart
Dart
www.github.com/MealTokTok/MealTokTok-App/tree/main/lib/screen/5_order/3_order_state_delivered.dart
https://raw.githubusercontent.com/MealTokTok/MealTokTok-App/3da0e6c/lib/screen/5_order/3_order_state_delivered.dart
MealTokTok/MealTokTok-App 3da0e6c lib/screen/5_order/3_order_state_delivered.dart
true
200
7,146
import 'package:flutter/material.dart'; import 'package:hankkitoktok/component/mealinfo2.dart'; import 'package:hankkitoktok/const/color.dart'; import 'package:hankkitoktok/const/style2.dart'; import 'package:hankkitoktok/functions/httpRequest.dart'; import 'package:hankkitoktok/models/meal/meal.dart'; import 'package:...
7
abnikagarg19/chatbot_community
13322e3
lib/components/rounded_button.dart
Dart
www.github.com/abnikagarg19/chatbot_community/tree/main/lib/components/rounded_button.dart
https://raw.githubusercontent.com/abnikagarg19/chatbot_community/13322e3/lib/components/rounded_button.dart
abnikagarg19/chatbot_community 13322e3 lib/components/rounded_button.dart
true
200
1,176
import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; import '../theme/apptheme.dart'; import '../utils/constant.dart'; class RoundedButton extends StatelessWidget { RoundedButton( {super.key, required this.title, required this.backgroundColor, required this...
4
adhamkhaledabdelwahab/Hotel_Booking
3eb6b78
lib/presentation/widget/caption_of_onboarding.dart
Dart
www.github.com/adhamkhaledabdelwahab/Hotel_Booking/tree/main/lib/presentation/widget/caption_of_onboarding.dart
https://raw.githubusercontent.com/adhamkhaledabdelwahab/Hotel_Booking/3eb6b78/lib/presentation/widget/caption_of_onboarding.dart
adhamkhaledabdelwahab/Hotel_Booking 3eb6b78 lib/presentation/widget/caption_of_onboarding.dart
true
200
676
import 'package:booking_hotel/core/styles/colors.dart'; import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; class CaptionOfOnBoarding extends StatelessWidget { final String text; final double fontSize; final Color color; const CaptionOfOnBoarding({ Key? key...
0
Isaaca11222/weather_app
f8fdbd4
lib/features/home/pages/home_page.dart
Dart
www.github.com/Isaaca11222/weather_app/tree/main/lib/features/home/pages/home_page.dart
https://raw.githubusercontent.com/Isaaca11222/weather_app/f8fdbd4/lib/features/home/pages/home_page.dart
Isaaca11222/weather_app f8fdbd4 lib/features/home/pages/home_page.dart
true
200
3,755
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:wheater_app/app/core/enums.dart'; import 'package:wheater_app/data/remote_data_sources/weather_remote_data_source.dart'; import 'package:wheater_app/domain/models/weather_model.dart'; import 'package:wheater_app/do...
1
nocab-transfer/nocab-mobile
d63bc24
lib/models/database/transfer_db.dart
Dart
www.github.com/nocab-transfer/nocab-mobile/tree/main/lib/models/database/transfer_db.dart
https://raw.githubusercontent.com/nocab-transfer/nocab-mobile/d63bc24/lib/models/database/transfer_db.dart
nocab-transfer/nocab-mobile d63bc24 lib/models/database/transfer_db.dart
true
200
1,953
import 'package:flutter/material.dart'; import 'package:isar/isar.dart'; import 'package:nocab/models/database/device_db.dart'; import 'package:nocab/models/database/file_db.dart'; part 'transfer_db.g.dart'; @collection @Name("Transfer") class TransferDatabase { Id id = Isar.autoIncrement; @Name("Transfer Unique...
5
NonLegit/reddit_cross_platform
b364a50
lib/post/widgets/post_body.dart
Dart
www.github.com/NonLegit/reddit_cross_platform/tree/main/lib/post/widgets/post_body.dart
https://raw.githubusercontent.com/NonLegit/reddit_cross_platform/b364a50/lib/post/widgets/post_body.dart
NonLegit/reddit_cross_platform b364a50 lib/post/widgets/post_body.dart
true
200
4,578
import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:post/post/models/post_model.dart'; import 'package:post/post/screens/post_screen.dart'; import 'package:post/post/widgets/post_card.dart'; import 'package:post/post/widgets/post_images.dart'; import 'package:post/post/widgets/post_t...
3
rhyun04/Google-Ignite-reTHRIFT
1327b13
lib/pages/user_profile.dart
Dart
www.github.com/rhyun04/Google-Ignite-reTHRIFT/tree/main/lib/pages/user_profile.dart
https://raw.githubusercontent.com/rhyun04/Google-Ignite-reTHRIFT/1327b13/lib/pages/user_profile.dart
rhyun04/Google-Ignite-reTHRIFT 1327b13 lib/pages/user_profile.dart
true
200
6,015
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:my_app/auth.dart'; import 'package:my_app/pages/login_register_page.dart'; class SettingsPage extends StatefulWidget { const SettingsPage({Key? key}) : super(key: key); ...
6
Tyson0001/event_app2
ddc7205
lib/widgets/event_card.dart
Dart
www.github.com/Tyson0001/event_app2/tree/main/lib/widgets/event_card.dart
https://raw.githubusercontent.com/Tyson0001/event_app2/ddc7205/lib/widgets/event_card.dart
Tyson0001/event_app2 ddc7205 lib/widgets/event_card.dart
true
200
2,591
// lib/widgets/event_card.dart import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import '../models/event.dart'; class EventCard extends StatelessWidget { final Event event; const EventCard({Key? key, required this.event}) : super(key: key); @override Widget build(BuildContext context)...
2
JEN-Mikro/Cloning-app-ebranchbca
dfce680
flutter_app/lib/transaction.dart
Dart
www.github.com/JEN-Mikro/Cloning-app-ebranchbca/tree/main/flutter_app/lib/transaction.dart
https://raw.githubusercontent.com/JEN-Mikro/Cloning-app-ebranchbca/dfce680/flutter_app/lib/transaction.dart
JEN-Mikro/Cloning-app-ebranchbca dfce680 flutter_app/lib/transaction.dart
true
200
422
import 'package:firebase_auth/firebase_auth.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; void createTransaction(Map<String, dynamic> transactionData) async { User? user = FirebaseAuth.instance.currentUser; if (user != null) { String uid = user.uid; transactionData['uid'] = uid; awai...
4
DavidJoanes/bole_by_joe
abadba1
lib/widgets/navigation_drawer.dart
Dart
www.github.com/DavidJoanes/bole_by_joe/tree/main/lib/widgets/navigation_drawer.dart
https://raw.githubusercontent.com/DavidJoanes/bole_by_joe/abadba1/lib/widgets/navigation_drawer.dart
DavidJoanes/bole_by_joe abadba1 lib/widgets/navigation_drawer.dart
true
200
3,428
import 'package:flutter/material.dart'; import 'package:get_storage/get_storage.dart'; import 'package:go_router/go_router.dart'; import 'package:google_fonts/google_fonts.dart'; class CustomDrawer extends StatefulWidget { const CustomDrawer({super.key}); @override State<CustomDrawer> createState() => _CustomDr...
7
sINFdorako/christmas
abbd64a
lib/features/present_selector/presentation/providers/job_input_provider.dart
Dart
www.github.com/sINFdorako/christmas/tree/main/lib/features/present_selector/presentation/providers/job_input_provider.dart
https://raw.githubusercontent.com/sINFdorako/christmas/abbd64a/lib/features/present_selector/presentation/providers/job_input_provider.dart
sINFdorako/christmas abbd64a lib/features/present_selector/presentation/providers/job_input_provider.dart
true
200
425
import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; final jobInputProvider = StateNotifierProvider<JobController, TextEditingController>((ref) { return JobController(); }); class JobController extends StateNotifier<TextEditingController> { JobController() : super(T...
1
hojun-jo/NomadCoders-Flutter-Challenge
36539d8
pal_book/lib/views/widgets/background_image.dart
Dart
www.github.com/hojun-jo/NomadCoders-Flutter-Challenge/tree/main/pal_book/lib/views/widgets/background_image.dart
https://raw.githubusercontent.com/hojun-jo/NomadCoders-Flutter-Challenge/36539d8/pal_book/lib/views/widgets/background_image.dart
hojun-jo/NomadCoders-Flutter-Challenge 36539d8 pal_book/lib/views/widgets/background_image.dart
true
200
524
import 'package:flutter/material.dart'; class BackgroundImage extends StatelessWidget { final String path; const BackgroundImage({super.key, required this.path}); @override Widget build(BuildContext context) { final size = MediaQuery.sizeOf(context); return Stack( children: [ SizedBox(...
0
nagendrainvweb/moneyProfit
218a368
lib/model/notification_data.dart
Dart
www.github.com/nagendrainvweb/moneyProfit/tree/main/lib/model/notification_data.dart
https://raw.githubusercontent.com/nagendrainvweb/moneyProfit/218a368/lib/model/notification_data.dart
nagendrainvweb/moneyProfit 218a368 lib/model/notification_data.dart
true
200
1,008
class NotificationData { String id; String title; String content; String addOn; String firebaseStatus; String readUsers; String deletedUsers; NotificationData( {this.id, this.title, this.content, this.addOn, this.firebaseStatus, this.readUsers, this.deletedUser...
3
hariharankk/Employee-suite
4a725dc
lib/ui/admin_side/admin_page.dart
Dart
www.github.com/hariharankk/Employee-suite/tree/main/lib/ui/admin_side/admin_page.dart
https://raw.githubusercontent.com/hariharankk/Employee-suite/4a725dc/lib/ui/admin_side/admin_page.dart
hariharankk/Employee-suite 4a725dc lib/ui/admin_side/admin_page.dart
true
200
5,305
import 'package:mark/models/store.dart'; import 'package:mark/services/firebase_service.dart'; import 'package:mark/ui/admin_side/list_approval_page.dart'; import 'package:mark/ui/admin_side/employee_form.dart'; import 'package:mark/ui/admin_side/list_employee_page.dart'; import 'package:mark/ui/admin_side/store_config...
5
gaabrielalex/e-commerce_confeitaria
b69ebeb
lib/pages/product/product_forms/default_form/default_form_of_product.dart
Dart
www.github.com/gaabrielalex/e-commerce_confeitaria/tree/main/lib/pages/product/product_forms/default_form/default_form_of_product.dart
https://raw.githubusercontent.com/gaabrielalex/e-commerce_confeitaria/b69ebeb/lib/pages/product/product_forms/default_form/default_form_of_product.dart
gaabrielalex/e-commerce_confeitaria b69ebeb lib/pages/product/product_forms/default_form/default_form_of_product.dart
true
200
10,855
// ignore_for_file: must_be_immutable import 'package:brasil_fields/brasil_fields.dart'; import 'package:cached_network_image/cached_network_image.dart'; import 'package:confeitaria_divine_cacau/models/product/product.dart'; import 'package:confeitaria_divine_cacau/pages/user_account/layout/default_layout_user_account...
6
tharindu97/flutter-learning
bd39cfb
multiplenavigation/lib/onboarding_page.dart
Dart
www.github.com/tharindu97/flutter-learning/tree/main/multiplenavigation/lib/onboarding_page.dart
https://raw.githubusercontent.com/tharindu97/flutter-learning/bd39cfb/multiplenavigation/lib/onboarding_page.dart
tharindu97/flutter-learning bd39cfb multiplenavigation/lib/onboarding_page.dart
true
200
424
import 'package:flutter/material.dart'; class OnboardingPage extends StatefulWidget { const OnboardingPage({super.key}); @override State<OnboardingPage> createState() => _OnboardingPageState(); } class _OnboardingPageState extends State<OnboardingPage> { @override Widget build(BuildContext context) { r...
2
AmirKhairy/weather-app
68f1b1f
lib/main/presentation/views/splash_screen.dart
Dart
www.github.com/AmirKhairy/weather-app/tree/main/lib/main/presentation/views/splash_screen.dart
https://raw.githubusercontent.com/AmirKhairy/weather-app/68f1b1f/lib/main/presentation/views/splash_screen.dart
AmirKhairy/weather-app 68f1b1f lib/main/presentation/views/splash_screen.dart
true
200
727
import 'package:animated_splash_screen/animated_splash_screen.dart'; import 'package:flutter/material.dart'; import 'package:page_transition/page_transition.dart'; class SplashScreen extends StatelessWidget { final Widget openScreen; const SplashScreen({ super.key, required this.openScreen, }); @ove...
7
vico-aguado/ancient-test
9d5ba7e
lib/app/presentation/screens/home/home_screen.dart
Dart
www.github.com/vico-aguado/ancient-test/tree/main/lib/app/presentation/screens/home/home_screen.dart
https://raw.githubusercontent.com/vico-aguado/ancient-test/9d5ba7e/lib/app/presentation/screens/home/home_screen.dart
vico-aguado/ancient-test 9d5ba7e lib/app/presentation/screens/home/home_screen.dart
true
200
2,685
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:loading_animation_widget/loading_animation_widget.dart'; import 'package:prueba_ancient/app/bloc/app_bloc.dart'; import 'package:prueba_ancient/app/config/colors.dart'; import '../../../core/repositories/products_r...
4
thaops/NP_Personnel
ab3b652
lib/src/feature/update_task/task_update_screen.dart
Dart
www.github.com/thaops/NP_Personnel/tree/main/lib/src/feature/update_task/task_update_screen.dart
https://raw.githubusercontent.com/thaops/NP_Personnel/ab3b652/lib/src/feature/update_task/task_update_screen.dart
thaops/NP_Personnel ab3b652 lib/src/feature/update_task/task_update_screen.dart
true
200
10,205
import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:hocflutter/src/Api/provider/api_service.dart'; import 'package:hocflutter/src/Api/models/users_model.dart'; import 'package:hocflutter/src/Api/models/sprint_model.dart'; import 'package:hocflutter/src/Api/models/t...
1
csparedes-pucesi/IDX-crud-app
f5d2fe8
lib/views/home_view.dart
Dart
www.github.com/csparedes-pucesi/IDX-crud-app/tree/main/lib/views/home_view.dart
https://raw.githubusercontent.com/csparedes-pucesi/IDX-crud-app/f5d2fe8/lib/views/home_view.dart
csparedes-pucesi/IDX-crud-app f5d2fe8 lib/views/home_view.dart
true
200
1,581
import 'package:flutter/material.dart'; import 'package:myapp/widgets/drawer_widget.dart'; class HomeView extends StatelessWidget { const HomeView({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text("Home View"), ), drawer...
0
MeshackT/scanner
e870d5f
lib/Navigation.dart
Dart
www.github.com/MeshackT/scanner/tree/main/lib/Navigation.dart
https://raw.githubusercontent.com/MeshackT/scanner/e870d5f/lib/Navigation.dart
MeshackT/scanner e870d5f lib/Navigation.dart
true
200
3,384
import 'package:flutter/material.dart'; import 'package:google_nav_bar/google_nav_bar.dart'; import 'CreateHome.dart'; import 'HistoryHome.dart'; import 'MoreHome.dart'; import 'ScannerHome.dart'; class Navigation extends StatefulWidget { final bool darkModeEnabled; final Function(bool) toggleDarkMode; const Na...
5
JainnyAryan/ride
ab34943
lib/widgets/driver_control_panel.dart
Dart
www.github.com/JainnyAryan/ride/tree/main/lib/widgets/driver_control_panel.dart
https://raw.githubusercontent.com/JainnyAryan/ride/ab34943/lib/widgets/driver_control_panel.dart
JainnyAryan/ride ab34943 lib/widgets/driver_control_panel.dart
true
200
1,263
import 'package:flutter/material.dart'; import 'package:ride/screens/face_scan_screen.dart'; import 'package:ride/widgets/side_drawer_tile.dart'; class DriverControlPanel extends StatelessWidget { const DriverControlPanel({ super.key, }); @override Widget build(BuildContext context) { return Container...
6
Ajy74/infozzle_star
a4b8941
lib/layers/presentation/views/pages/cart/cart_state.dart
Dart
www.github.com/Ajy74/infozzle_star/tree/main/lib/layers/presentation/views/pages/cart/cart_state.dart
https://raw.githubusercontent.com/Ajy74/infozzle_star/a4b8941/lib/layers/presentation/views/pages/cart/cart_state.dart
Ajy74/infozzle_star a4b8941 lib/layers/presentation/views/pages/cart/cart_state.dart
true
200
717
import 'package:breathpacer/layers/domain/models/cart_item_model.dart'; class CartState { List<CartItemModel> cartItems; bool isCouponApplied; bool isDataLoading; double discount; String appliedCoupon; CartState( {this.cartItems = const [], this.isCouponApplied = false, this.isDataLoadin...
3
Shivamsagar01/Movie-Chronicle
6cea496
lib/presentation/journey/homeScreen/widgets/searchWidget/searched_movie_tile.dart
Dart
www.github.com/Shivamsagar01/Movie-Chronicle/tree/main/lib/presentation/journey/homeScreen/widgets/searchWidget/searched_movie_tile.dart
https://raw.githubusercontent.com/Shivamsagar01/Movie-Chronicle/6cea496/lib/presentation/journey/homeScreen/widgets/searchWidget/searched_movie_tile.dart
Shivamsagar01/Movie-Chronicle 6cea496 lib/presentation/journey/homeScreen/widgets/searchWidget/searched_movie_tile.dart
true
200
5,068
import 'package:cached_network_image/cached_network_image.dart'; import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; import '../../../../../data/core/api_constants.dart'; import '../../../../../data/models/movie_genre.dart'; import '../../../movieDetails/movie_detail_screen.dart'; ...
7
SuasteEd/flutter_3er_parcial
566c266
lib/alerts/alert_error.dart
Dart
www.github.com/SuasteEd/flutter_3er_parcial/tree/main/lib/alerts/alert_error.dart
https://raw.githubusercontent.com/SuasteEd/flutter_3er_parcial/566c266/lib/alerts/alert_error.dart
SuasteEd/flutter_3er_parcial 566c266 lib/alerts/alert_error.dart
true
200
500
import 'package:flutter/material.dart'; import 'package:quickalert/quickalert.dart'; import '../theme/app_theme.dart'; Future<void> alertError(BuildContext context, String message) { return QuickAlert.show( context: context, type: QuickAlertType.error, title: 'Error', animType: QuickAlertAnimType.sli...
4
garlictech/yaha
148ff13
apps/yaha/lib/ui/views/hikes/hike/widgets/weather-row-tile-widget.dart
Dart
www.github.com/garlictech/yaha/tree/main/apps/yaha/lib/ui/views/hikes/hike/widgets/weather-row-tile-widget.dart
https://raw.githubusercontent.com/garlictech/yaha/148ff13/apps/yaha/lib/ui/views/hikes/hike/widgets/weather-row-tile-widget.dart
garlictech/yaha 148ff13 apps/yaha/lib/ui/views/hikes/hike/widgets/weather-row-tile-widget.dart
true
200
1,122
import 'package:flutter/material.dart'; import '../../../shared/shared.dart'; class WeatherRowTile extends StatelessWidget { final String time; final String icon; final String degree; const WeatherRowTile({ Key? key, required this.time, required this.icon, required this.degree, }) : super(k...
2
goldspring/sibatv
82f6490
plugins/ls_netchat_plugin/lib/message_data.dart
Dart
www.github.com/goldspring/sibatv/tree/main/plugins/ls_netchat_plugin/lib/message_data.dart
https://raw.githubusercontent.com/goldspring/sibatv/82f6490/plugins/ls_netchat_plugin/lib/message_data.dart
goldspring/sibatv 82f6490 plugins/ls_netchat_plugin/lib/message_data.dart
true
200
539
class MsgListResult { List<NIMessage> msgList = []; List<NIMessage> getResultFromMap(data) { msgList = []; data.forEach((info) { msgList.add(NIMessage() ..nicName = info["nicName"] ..msgType = info["msgType"] ..content = info["content"] ..sessionId = info["sessionId"] ...
0
kngetich45/Weather-Forecast-Flutter
5b9932a
test/core/bloc/weatherForecastCubit/weather_forecast_cubit_test.dart
Dart
www.github.com/kngetich45/Weather-Forecast-Flutter/tree/main/test/core/bloc/weatherForecastCubit/weather_forecast_cubit_test.dart
https://raw.githubusercontent.com/kngetich45/Weather-Forecast-Flutter/5b9932a/test/core/bloc/weatherForecastCubit/weather_forecast_cubit_test.dart
kngetich45/Weather-Forecast-Flutter 5b9932a test/core/bloc/weatherForecastCubit/weather_forecast_cubit_test.dart
true
200
3,320
import 'package:bloc_test/bloc_test.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/annotations.dart'; import 'package:mockito/mockito.dart'; import 'package:weather_app/core/data/model/weather_forecast_model.dart'; import 'package:weather_app/core/bloc/weatherForecastCubit/weather_...
1
sreejithcs007/dart_program_sept
2a84855
bin/oops/multiple_inheritance.dart
Dart
www.github.com/sreejithcs007/dart_program_sept/tree/main/bin/oops/multiple_inheritance.dart
https://raw.githubusercontent.com/sreejithcs007/dart_program_sept/2a84855/bin/oops/multiple_inheritance.dart
sreejithcs007/dart_program_sept 2a84855 bin/oops/multiple_inheritance.dart
true
200
1,511
import 'dart:math'; abstract class Father{ void fdetails(String name , String job , int phone); } abstract class Mother{ void mdetails(String name , String job , int phone); } abstract class House{ void hdetails(String address , double location , int pincode); } ///class child extends Father , Mother{} - thi...
6