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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
mahmood-shamieh/masarifi | f6671d1 | lib/models/db_models/category_model.dart | Dart | www.github.com/mahmood-shamieh/masarifi/tree/main/lib/models/db_models/category_model.dart | https://raw.githubusercontent.com/mahmood-shamieh/masarifi/f6671d1/lib/models/db_models/category_model.dart | mahmood-shamieh/masarifi f6671d1 lib/models/db_models/category_model.dart | true | 200 | 1,019 | import 'dart:convert';
class CategoryModel {
int? id;
String? name;
CategoryModel({
this.id,
this.name,
});
CategoryModel copyWith({
int? id,
String? name,
}) {
return CategoryModel(
id: id ?? this.id,
name: name ?? this.name,
);
}
Map<String, dynamic> toMap() {
... | 1 |
egotk/adApp | 8f81225 | lib/features/auth/presentation/widgets/my_text_field.dart | Dart | www.github.com/egotk/adApp/tree/main/lib/features/auth/presentation/widgets/my_text_field.dart | https://raw.githubusercontent.com/egotk/adApp/8f81225/lib/features/auth/presentation/widgets/my_text_field.dart | egotk/adApp 8f81225 lib/features/auth/presentation/widgets/my_text_field.dart | true | 200 | 1,122 | import 'package:flutter/material.dart';
class MyTextField extends StatelessWidget {
final TextEditingController controller;
final String hintText;
final TextInputType? keyboardType;
const MyTextField({
super.key,
required this.controller,
required this.hintText,
this.keyboardType,
});
@ov... | 3 |
AanWiguna/StongU_App | d8db5eb | lib/opening.dart | Dart | www.github.com/AanWiguna/StongU_App/tree/main/lib/opening.dart | https://raw.githubusercontent.com/AanWiguna/StongU_App/d8db5eb/lib/opening.dart | AanWiguna/StongU_App d8db5eb lib/opening.dart | true | 200 | 4,914 | import 'package:flutter/material.dart';
import 'package:strong_u/page_indicator.dart';
import 'package:strong_u/zipcode.dart';
class OpeningPage extends StatelessWidget {
const OpeningPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
... | 0 |
hagiosolat/smart-irrigation-app | 7ddab02 | lib/src/screens/weather_screen.dart | Dart | www.github.com/hagiosolat/smart-irrigation-app/tree/main/lib/src/screens/weather_screen.dart | https://raw.githubusercontent.com/hagiosolat/smart-irrigation-app/7ddab02/lib/src/screens/weather_screen.dart | hagiosolat/smart-irrigation-app 7ddab02 lib/src/screens/weather_screen.dart | true | 200 | 10,555 | import 'package:flutter/material.dart';
import 'package:irrigation1/main.dart';
import 'package:irrigation1/src/bloc/weather_event.dart';
import 'package:irrigation1/src/bloc/weather_state.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:irrigation1/src/model/weather.dart';
import 'package:irriga... | 6 |
9somang/Check-this-out_app | f8081dc | lib/QR/Qrcode_provider.dart | Dart | www.github.com/9somang/Check-this-out_app/tree/main/lib/QR/Qrcode_provider.dart | https://raw.githubusercontent.com/9somang/Check-this-out_app/f8081dc/lib/QR/Qrcode_provider.dart | 9somang/Check-this-out_app f8081dc lib/QR/Qrcode_provider.dart | true | 200 | 374 | import 'package:check_app/user/user_controller.dart';
import 'package:get/get.dart';
import '../Token/token.dart';
UserController u = Get.find();
const host = "http://43.200.123.69:5000/image";
class QrCodeProvider extends GetConnect {
Future<Response> findcode()=>
get("$host/qr/${u.principal.value.student_i... | 5 |
Biswajit1729/yukkta_client | 01c5ae8 | lib/common/routes/routes.dart | Dart | www.github.com/Biswajit1729/yukkta_client/tree/main/lib/common/routes/routes.dart | https://raw.githubusercontent.com/Biswajit1729/yukkta_client/01c5ae8/lib/common/routes/routes.dart | Biswajit1729/yukkta_client 01c5ae8 lib/common/routes/routes.dart | true | 200 | 391 | import 'package:get/get.dart';
import '../../index.dart';
class AppRoutes {
static final routes = [
GetPage(name: '/onboarding', page: () => const OnboardingPage()),
GetPage(name: '/login', page: () => const LoginPage()),
GetPage(name: '/profile_setup', page: () => const ProfileSetupPage()),
GetPage... | 7 |
Luis270100/FitLifeHub | 2c9d927 | modules/exercise/lib/presentation/views/exercises/exercises_view_cubit.dart | Dart | www.github.com/Luis270100/FitLifeHub/tree/main/modules/exercise/lib/presentation/views/exercises/exercises_view_cubit.dart | https://raw.githubusercontent.com/Luis270100/FitLifeHub/2c9d927/modules/exercise/lib/presentation/views/exercises/exercises_view_cubit.dart | Luis270100/FitLifeHub 2c9d927 modules/exercise/lib/presentation/views/exercises/exercises_view_cubit.dart | true | 200 | 949 | import 'package:bloc/bloc.dart';
import 'package:equatable/equatable.dart';
import 'package:exercise/domain/entities/exercise.dart';
import 'package:exercise/domain/repository/exercise_repository.dart';
part 'exercises_view_state.dart';
class ExercisesViewCubit extends Cubit<ExercisesViewState> {
ExercisesViewCubit... | 2 |
MennTech/atma_kitchen_mobile | 7000b3f | lib/data/model/bahan_baku.dart | Dart | www.github.com/MennTech/atma_kitchen_mobile/tree/main/lib/data/model/bahan_baku.dart | https://raw.githubusercontent.com/MennTech/atma_kitchen_mobile/7000b3f/lib/data/model/bahan_baku.dart | MennTech/atma_kitchen_mobile 7000b3f lib/data/model/bahan_baku.dart | true | 200 | 839 | import 'dart:convert';
class BahanBaku {
int idBahanBaku;
String namaBahanBaku;
int stok;
String satuan;
BahanBaku({
required this.idBahanBaku,
required this.namaBahanBaku,
required this.stok,
required this.satuan,
});
factory BahanBaku.fromRawJson(String str) =>
B... | 4 |
msx-git/xulosa_ai | cbf2ad2 | lib/ui/screens/home/home_screen.dart | Dart | www.github.com/msx-git/xulosa_ai/tree/main/lib/ui/screens/home/home_screen.dart | https://raw.githubusercontent.com/msx-git/xulosa_ai/cbf2ad2/lib/ui/screens/home/home_screen.dart | msx-git/xulosa_ai cbf2ad2 lib/ui/screens/home/home_screen.dart | true | 200 | 3,295 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:xulosa_ai/core/utils/constants.dart';
import 'package:xulosa_ai/ui/screens/summary/summary_screen.dart';
import '../../../logic/blocs/blocs.dart';
import 'widgets/book_previ... | 3 |
KanmaChizea/student_information_chatbot | d122f81 | lib/data/dialogflow_service.dart | Dart | www.github.com/KanmaChizea/student_information_chatbot/tree/main/lib/data/dialogflow_service.dart | https://raw.githubusercontent.com/KanmaChizea/student_information_chatbot/d122f81/lib/data/dialogflow_service.dart | KanmaChizea/student_information_chatbot d122f81 lib/data/dialogflow_service.dart | true | 200 | 735 | // ignore: import_of_legacy_library_into_null_safe
import 'package:flutter_dialogflow/dialogflow_v2.dart';
import 'package:student_information_chatbot/models/chat.dart';
final str = {'hi': 'our'};
class DialogFlowService {
Future<ChatMessage?> getResponse(String query) async {
AuthGoogle authGoogle =
aw... | 6 |
mrubaz/justrightapp | 225c8e7 | lib/models/journal_model.dart | Dart | www.github.com/mrubaz/justrightapp/tree/main/lib/models/journal_model.dart | https://raw.githubusercontent.com/mrubaz/justrightapp/225c8e7/lib/models/journal_model.dart | mrubaz/justrightapp 225c8e7 lib/models/journal_model.dart | true | 200 | 1,386 | import 'package:cloud_firestore/cloud_firestore.dart';
class JournalModel {
Timestamp? createdAt;
List<JournalsTasks>? journalsTasks;
String? id;
String? title;
JournalModel({this.createdAt, this.journalsTasks, this.id, this.title});
JournalModel.fromJson(Map<String, dynamic> json) {
createdAt = json... | 5 |
yashprovis/services_worker | a11a470 | lib/widgets/sw_text.dart | Dart | www.github.com/yashprovis/services_worker/tree/main/lib/widgets/sw_text.dart | https://raw.githubusercontent.com/yashprovis/services_worker/a11a470/lib/widgets/sw_text.dart | yashprovis/services_worker a11a470 lib/widgets/sw_text.dart | true | 200 | 752 | import 'package:flutter/material.dart';
class SwText extends StatelessWidget {
final String text;
final double? size;
final FontWeight? weight;
final Color? color;
final TextAlign? align;
final int? maxLines;
final double? height;
const SwText(this.text,
{Key? key,
this.size,
this.wei... | 0 |
GustavoOrelio/AppAgendamento | 8f2bc29 | lib/view/funcionario/lista_funcionario.dart | Dart | www.github.com/GustavoOrelio/AppAgendamento/tree/main/lib/view/funcionario/lista_funcionario.dart | https://raw.githubusercontent.com/GustavoOrelio/AppAgendamento/8f2bc29/lib/view/funcionario/lista_funcionario.dart | GustavoOrelio/AppAgendamento 8f2bc29 lib/view/funcionario/lista_funcionario.dart | true | 200 | 3,335 | import 'package:beauty_time/domain/dto/funcionario_dto.dart';
import 'package:beauty_time/domain/porta/i_funcionario.dart';
import 'package:beauty_time/view/funcionario/adicionar_funcionario.dart';
import 'package:beauty_time/view/funcionario/detalhes_funcionario.dart';
import 'package:flutter/material.dart';
import 'd... | 7 |
myssaqil/ZendMind_Apllication-Mobile-Flutter | 74230e6 | lib/Main/UserMain/Consultation/consultation_menu.dart | Dart | www.github.com/myssaqil/ZendMind_Apllication-Mobile-Flutter/tree/main/lib/Main/UserMain/Consultation/consultation_menu.dart | https://raw.githubusercontent.com/myssaqil/ZendMind_Apllication-Mobile-Flutter/74230e6/lib/Main/UserMain/Consultation/consultation_menu.dart | myssaqil/ZendMind_Apllication-Mobile-Flutter 74230e6 lib/Main/UserMain/Consultation/consultation_menu.dart | true | 200 | 3,904 | import 'package:flutter/material.dart';
import 'package:zenmind/Func/Services/consultation_services.dart';
import 'package:zenmind/Main/UserMain/Consultation/widget_consultation.dart';
import 'package:zenmind/Models/listmentor_model.dart';
import 'package:zenmind/settings_all.dart';
class ConsultationMenu extends Stat... | 4 |
CarlosSchneider/bloco_de_notas | a967e89 | lib/controllers/theme_controller.dart | Dart | www.github.com/CarlosSchneider/bloco_de_notas/tree/main/lib/controllers/theme_controller.dart | https://raw.githubusercontent.com/CarlosSchneider/bloco_de_notas/a967e89/lib/controllers/theme_controller.dart | CarlosSchneider/bloco_de_notas a967e89 lib/controllers/theme_controller.dart | true | 200 | 5,359 | /* ======================================================================================
* Arquivo de configuração dos themas aplicados ao aplicativo
* Versão 1.0.0
*
*/
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:shared_preferences/shared_preferences.dart';
class MyThe... | 3 |
riya-hariya/flutter-training | 1d7871f | Projects/Socialmedia_Firebase/social_media_firebase/lib/components/wall_post.dart | Dart | www.github.com/riya-hariya/flutter-training/tree/main/Projects/Socialmedia_Firebase/social_media_firebase/lib/components/wall_post.dart | https://raw.githubusercontent.com/riya-hariya/flutter-training/1d7871f/Projects/Socialmedia_Firebase/social_media_firebase/lib/components/wall_post.dart | riya-hariya/flutter-training 1d7871f Projects/Socialmedia_Firebase/social_media_firebase/lib/components/wall_post.dart | true | 200 | 2,431 | import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:social_media_firebase/components/like_button.dart';
class WallPost extends StatefulWidget {
final String... | 1 |
thisissolmi/finalproject | e84705a | lib/onboarding.dart | Dart | www.github.com/thisissolmi/finalproject/tree/main/lib/onboarding.dart | https://raw.githubusercontent.com/thisissolmi/finalproject/e84705a/lib/onboarding.dart | thisissolmi/finalproject e84705a lib/onboarding.dart | true | 200 | 3,445 | import 'package:flutter/material.dart';
import 'package:neeww/auth/login.dart';
import 'package:page_indicator/page_indicator.dart';
class Onboarding extends StatelessWidget {
const Onboarding({super.key});
static const String _title = 'Flutter Code Sample';
@override
Widget build(BuildContext context) {
... | 2 |
edo6661/learn_dart | f8743b0 | doc/classes & objects/modifier/2 base.dart | Dart | www.github.com/edo6661/learn_dart/tree/main/doc/classes & objects/modifier/2 base.dart | https://raw.githubusercontent.com/edo6661/learn_dart/f8743b0/doc/classes%20%26%20objects/modifier/2%20base.dart | edo6661/learn_dart f8743b0 doc/classes & objects/modifier/2 base.dart | true | 200 | 1,391 | // ! Modifier base digunakan untuk membuat kelas yang hanya boleh di-extend (diturunkan) dalam library yang sama. Kelas yang diberi modifier base tidak boleh di-implementasikan oleh kelas lain dari luar library tersebut.
// ! Dengan kata lain, base memastikan bahwa hanya inheritance (pewarisan) yang diperbolehkan dalam... | 5 |
afiksourav/task_management_app | 4e0e995 | lib/widgets/button_widget.dart | Dart | www.github.com/afiksourav/task_management_app/tree/main/lib/widgets/button_widget.dart | https://raw.githubusercontent.com/afiksourav/task_management_app/4e0e995/lib/widgets/button_widget.dart | afiksourav/task_management_app 4e0e995 lib/widgets/button_widget.dart | true | 200 | 817 |
import 'package:flutter/material.dart';
import '../screens/theme.dart';
import '../utils/app_layout.dart';
class MyBottom extends StatelessWidget {
final String label;
final Function()? onTap;
const MyBottom({required this.label, required this.onTap,super.key});
@override
Widget build(BuildContext context... | 6 |
hosseinkhojany/messenger | 62183db | lib/data/repositories/chat_repository.dart | Dart | www.github.com/hosseinkhojany/messenger/tree/main/lib/data/repositories/chat_repository.dart | https://raw.githubusercontent.com/hosseinkhojany/messenger/62183db/lib/data/repositories/chat_repository.dart | hosseinkhojany/messenger 62183db lib/data/repositories/chat_repository.dart | true | 200 | 1,642 | import '../datasources/remote/chat_datasource.dart';
import '../models/message.dart';
class ChatRepository{
List<BaseMessageModel> messages = [];
List<BaseMessageModel> history_messages = [];
void addMessage(BaseMessageModel message){
List<BaseMessageModel> result = [];
result.add(message);
result... | 0 |
lambej/stock-portfolio-flutter | ea413b9 | lib/login/view/login_page.dart | Dart | www.github.com/lambej/stock-portfolio-flutter/tree/main/lib/login/view/login_page.dart | https://raw.githubusercontent.com/lambej/stock-portfolio-flutter/ea413b9/lib/login/view/login_page.dart | lambej/stock-portfolio-flutter ea413b9 lib/login/view/login_page.dart | true | 200 | 724 | import 'package:stock_portfolio/authentication/authentication.dart';
import 'package:stock_portfolio/login/login.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
class LoginPage extends StatelessWidget {
const LoginPage({super.key});
static Page<void> page() => const... | 4 |
bmnvnt/Tugas2 | 4d22d16 | Tugas2_PPAM/lib/login.dart | Dart | www.github.com/bmnvnt/Tugas2/tree/main/Tugas2_PPAM/lib/login.dart | https://raw.githubusercontent.com/bmnvnt/Tugas2/4d22d16/Tugas2_PPAM/lib/login.dart | bmnvnt/Tugas2 4d22d16 Tugas2_PPAM/lib/login.dart | true | 200 | 5,101 | import 'package:flutter/material.dart';
import 'package:login_signup_screen/homePage.dart';
class LoginPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
backgroundColor: Colors.white,
appBar: AppBar(
... | 3 |
teropeltola/koti | 4ac162d | lib/estate/view/estate_view.dart | Dart | www.github.com/teropeltola/koti/tree/main/lib/estate/view/estate_view.dart | https://raw.githubusercontent.com/teropeltola/koti/4ac162d/lib/estate/view/estate_view.dart | teropeltola/koti 4ac162d lib/estate/view/estate_view.dart | true | 200 | 6,161 | import 'package:flutter/material.dart';
import 'package:koti/view/my_drawer_view.dart';
import 'package:koti/operation_modes/view/operation_modes_selection_view.dart';
import 'package:talker_flutter/talker_flutter.dart';
import '../../app_configurator.dart';
import '../../devices/device/device.dart';
import '../../fun... | 1 |
Alok1721/QR_SCANNER_APP | b111739 | lib/model/eventAdmin.dart | Dart | www.github.com/Alok1721/QR_SCANNER_APP/tree/main/lib/model/eventAdmin.dart | https://raw.githubusercontent.com/Alok1721/QR_SCANNER_APP/b111739/lib/model/eventAdmin.dart | Alok1721/QR_SCANNER_APP b111739 lib/model/eventAdmin.dart | true | 200 | 428 | class User {
String? id;
String? imageUrl;
String? type;
String? name;
String? uniqueID;
User({this.id, this.type, this.imageUrl, this.name, this.uniqueID});
User.fromJson(Map<String, dynamic> json) {
id = json['_id'];
type = json['type'];
name = json['name'];
uniqueID =... | 2 |
maksoud-ali/mbook | 71486e4 | lib/user/user_data_layer/user_data_web/userdataweb.dart | Dart | www.github.com/maksoud-ali/mbook/tree/main/lib/user/user_data_layer/user_data_web/userdataweb.dart | https://raw.githubusercontent.com/maksoud-ali/mbook/71486e4/lib/user/user_data_layer/user_data_web/userdataweb.dart | maksoud-ali/mbook 71486e4 lib/user/user_data_layer/user_data_web/userdataweb.dart | true | 200 | 2,234 | import 'package:dartz/dartz.dart';
import 'package:mbook2/core/Failuer&Exception/post%20failuer/Exception.dart';
import 'package:mbook2/core/Failuer&Exception/user%20failuer%20&exception/userfailuer.dart';
import 'package:mbook2/user/user_data_layer/userModel.dart';
import 'package:http/http.dart' as http;
import 'dart... | 7 |
pampamch/food_delivery | c7f2172 | lib/widgets/app_bar.dart | Dart | www.github.com/pampamch/food_delivery/tree/main/lib/widgets/app_bar.dart | https://raw.githubusercontent.com/pampamch/food_delivery/c7f2172/lib/widgets/app_bar.dart | pampamch/food_delivery c7f2172 lib/widgets/app_bar.dart | true | 200 | 1,784 | import 'package:flutter/material.dart';
import 'package:flutter/src/foundation/key.dart';
import 'package:flutter/src/widgets/framework.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:food_delivery/constants.dart';
import 'package:food_delivery/screen/favorite_list_screen.dart';
class AppBarText ... | 6 |
maryamayman21/IslamiApp | 5644949 | lib/ui/home/tabs/hadeth_tab/hadeth_title_widget.dart | Dart | www.github.com/maryamayman21/IslamiApp/tree/main/lib/ui/home/tabs/hadeth_tab/hadeth_title_widget.dart | https://raw.githubusercontent.com/maryamayman21/IslamiApp/5644949/lib/ui/home/tabs/hadeth_tab/hadeth_title_widget.dart | maryamayman21/IslamiApp 5644949 lib/ui/home/tabs/hadeth_tab/hadeth_title_widget.dart | true | 200 | 1,349 | import 'package:flutter/material.dart';
import 'package:islami_app/ui/home/tabs/hadeth_tab/hadeth_details/hadeth_details_screen.dart';
import 'package:islami_app/ui/home/tabs/hadeth_tab/hadeth_details/hadeth_model.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
class HadethTitleWidget extends Stat... | 5 |
jlinares1/MTG_Deck_Scanner | efbfed4 | lib/models/deck_collection.dart | Dart | www.github.com/jlinares1/MTG_Deck_Scanner/tree/main/lib/models/deck_collection.dart | https://raw.githubusercontent.com/jlinares1/MTG_Deck_Scanner/efbfed4/lib/models/deck_collection.dart | jlinares1/MTG_Deck_Scanner efbfed4 lib/models/deck_collection.dart | true | 200 | 4,412 | import 'package:mtg_deck_creator/models/scryfall/mtg_card_response.dart';
class DeckCollection {
final String userId;
final String deckName;
final String gameType;
final int cardTotal;
final bool allUniqueCards;
final DateTime lastUpdated;
final List<String> colors;
final MTGCardResponse? commander;
... | 0 |
Sama-3l/Area-51 | e1038b7 | lib/presentation/pages/login.dart | Dart | www.github.com/Sama-3l/Area-51/tree/main/lib/presentation/pages/login.dart | https://raw.githubusercontent.com/Sama-3l/Area-51/e1038b7/lib/presentation/pages/login.dart | Sama-3l/Area-51 e1038b7 lib/presentation/pages/login.dart | true | 200 | 6,347 | // ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables, use_build_context_synchronously, must_be_immutable, prefer_const_constructors_in_immutables
import 'package:area_51/constants/colors.dart';
import 'package:area_51/constants/methods.dart';
import 'package:area_51/data/repositori... | 4 |
yakshpanchal/rupeetracker | 2b97218 | lib/main.dart | Dart | www.github.com/yakshpanchal/rupeetracker/tree/main/lib/main.dart | https://raw.githubusercontent.com/yakshpanchal/rupeetracker/2b97218/lib/main.dart | yakshpanchal/rupeetracker 2b97218 lib/main.dart | true | 200 | 804 | import 'package:flutter/material.dart';
import 'package:rupeetracker/configs/Routes/app_route_configration.dart';
import 'package:rupeetracker/configs/Theme/theme.dart';
void main() async {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of yo... | 3 |
T8NAT/motaqaied | f14fd61 | lib/ui/video_call_screen/view/video_call_screen.dart | Dart | www.github.com/T8NAT/motaqaied/tree/main/lib/ui/video_call_screen/view/video_call_screen.dart | https://raw.githubusercontent.com/T8NAT/motaqaied/f14fd61/lib/ui/video_call_screen/view/video_call_screen.dart | T8NAT/motaqaied f14fd61 lib/ui/video_call_screen/view/video_call_screen.dart | true | 200 | 581 | import 'package:flutter/material.dart';
import 'package:motaqaed/ui/video_call_screen/widget/video_call_widget.dart';
import 'package:flutter/services.dart';
class VideoCallScreen extends StatelessWidget {
const VideoCallScreen({super.key});
@override
Widget build(BuildContext context) {
SystemChrome.setSys... | 7 |
SadeepaGajanayaka/DementiaLink | c4b797d | lib/screens/patient_location_screen.dart | Dart | www.github.com/SadeepaGajanayaka/DementiaLink/tree/main/lib/screens/patient_location_screen.dart | https://raw.githubusercontent.com/SadeepaGajanayaka/DementiaLink/c4b797d/lib/screens/patient_location_screen.dart | SadeepaGajanayaka/DementiaLink c4b797d lib/screens/patient_location_screen.dart | true | 200 | 24,544 | import 'dart:async';
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:location/location.dart';
import 'package:firebase_database/firebase_database.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:cloud_firestore/cloud_firesto... | 1 |
AbdelrahmanZeid/DalelApp | 250133f | lib/core/utils/app_functions.dart | Dart | www.github.com/AbdelrahmanZeid/DalelApp/tree/main/lib/core/utils/app_functions.dart | https://raw.githubusercontent.com/AbdelrahmanZeid/DalelApp/250133f/lib/core/utils/app_functions.dart | AbdelrahmanZeid/DalelApp 250133f lib/core/utils/app_functions.dart | true | 200 | 2,089 | import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
navigation(context, String path) {
GoRouter.of(context).push(path);
}
navigationWithReplacment(context, String path) {
GoRouter.of(context... | 2 |
Nithin18Khan/verbat | 6041154 | lib/view/screens/registration_screen.dart | Dart | www.github.com/Nithin18Khan/verbat/tree/main/lib/view/screens/registration_screen.dart | https://raw.githubusercontent.com/Nithin18Khan/verbat/6041154/lib/view/screens/registration_screen.dart | Nithin18Khan/verbat 6041154 lib/view/screens/registration_screen.dart | true | 200 | 18,670 | import 'dart:io';
import 'package:hive/hive.dart';
import 'package:verbat/model/extension/assets.dart';
import 'package:verbat/view/widget/customTextInput.dart';
import 'package:verbat/view/widget/custom_app_bar.dart';
import 'package:verbat/view/widget/save_button.dart';
import 'package:verbat/view/widget/upload_phot... | 6 |
isthatshams/recoBasic | 736b39d | lib/Screens/sign_in.dart | Dart | www.github.com/isthatshams/recoBasic/tree/main/lib/Screens/sign_in.dart | https://raw.githubusercontent.com/isthatshams/recoBasic/736b39d/lib/Screens/sign_in.dart | isthatshams/recoBasic 736b39d lib/Screens/sign_in.dart | true | 200 | 7,105 | import 'package:basic_app/Screens/sign_up.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
class SignIn extends StatefulWidget {
const SignIn({super.key});
@override
State<SignIn> createState() => _SignInState();
}
class _SignInState extends State<SignIn> {
fi... | 5 |
TrungNgowf/E-Learning_App | 37da1e9 | Frontend/lib/views/course/course_detail/course_detail_cubit.dart | Dart | www.github.com/TrungNgowf/E-Learning_App/tree/main/Frontend/lib/views/course/course_detail/course_detail_cubit.dart | https://raw.githubusercontent.com/TrungNgowf/E-Learning_App/37da1e9/Frontend/lib/views/course/course_detail/course_detail_cubit.dart | TrungNgowf/E-Learning_App 37da1e9 Frontend/lib/views/course/course_detail/course_detail_cubit.dart | true | 200 | 2,545 | import 'package:bloc/bloc.dart';
import 'package:e_learning_app/common/custom_toast.dart';
import 'package:e_learning_app/models/course/course_detail.dart';
import 'package:e_learning_app/repositories/course/course_repository.dart';
import 'package:e_learning_app/repositories/user/user_repository.dart';
import 'package... | 0 |
araful39/Api-practice-and-Top-15-Api | f9fe3e4 | lib/main.dart | Dart | www.github.com/araful39/Api-practice-and-Top-15-Api/tree/main/lib/main.dart | https://raw.githubusercontent.com/araful39/Api-practice-and-Top-15-Api/f9fe3e4/lib/main.dart | araful39/Api-practice-and-Top-15-Api f9fe3e4 lib/main.dart | true | 200 | 441 | import 'package:flutter/material.dart';
import 'package:mamun_api_practice/view/classic_it_product/login_screen.dart';
import 'package:mamun_api_practice/view/flatzi_screen/flatzi_product_screen.dart';
void main(){
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@overri... | 3 |
BestBroth05/Aj_website_Frontend | 9144ada | lib/widgets/custom/calendar/calendar_side_panel.dart | Dart | www.github.com/BestBroth05/Aj_website_Frontend/tree/main/lib/widgets/custom/calendar/calendar_side_panel.dart | https://raw.githubusercontent.com/BestBroth05/Aj_website_Frontend/9144ada/lib/widgets/custom/calendar/calendar_side_panel.dart | BestBroth05/Aj_website_Frontend 9144ada lib/widgets/custom/calendar/calendar_side_panel.dart | true | 200 | 4,577 | import 'package:auto_size_text/auto_size_text.dart';
import 'package:flutter/material.dart';
import 'package:guadalajarav2/extensions/str_extension.dart';
import 'package:guadalajarav2/widgets/custom/calendar/calendar_utils/enum_date.dart';
class CalendarSidePanel extends StatelessWidget {
final DateTime date;... | 1 |
raiappsstudio/todo_flutter | 05c7d79 | lib/screens/add_new_todo_screen.dart | Dart | www.github.com/raiappsstudio/todo_flutter/tree/main/lib/screens/add_new_todo_screen.dart | https://raw.githubusercontent.com/raiappsstudio/todo_flutter/05c7d79/lib/screens/add_new_todo_screen.dart | raiappsstudio/todo_flutter 05c7d79 lib/screens/add_new_todo_screen.dart | true | 200 | 2,570 | import 'package:flutter/material.dart';
import 'package:todo_flutter/screens/todo.dart';
class AddNewTodoScreen extends StatefulWidget {
const AddNewTodoScreen({super.key});
@override
State<AddNewTodoScreen> createState() => _AddNewTodoScreenState();
}
class _AddNewTodoScreenState extends State<AddNewTodoScree... | 7 |
lakhanrathod7/newstore | 3aac5ef | lib/screen/profile_screen.dart | Dart | www.github.com/lakhanrathod7/newstore/tree/main/lib/screen/profile_screen.dart | https://raw.githubusercontent.com/lakhanrathod7/newstore/3aac5ef/lib/screen/profile_screen.dart | lakhanrathod7/newstore 3aac5ef lib/screen/profile_screen.dart | true | 200 | 396 | import 'package:flutter/material.dart';
class ProfileScreen extends StatelessWidget {
const ProfileScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Cen... | 2 |
Kahunyuro/dart_pill_pal | 5814bf9 | lib/main.dart | Dart | www.github.com/Kahunyuro/dart_pill_pal/tree/main/lib/main.dart | https://raw.githubusercontent.com/Kahunyuro/dart_pill_pal/5814bf9/lib/main.dart | Kahunyuro/dart_pill_pal 5814bf9 lib/main.dart | true | 200 | 1,097 | import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:pill_pa1/drugs/shop.dart';
import 'package:http/http.dart' as http;
import 'package:pill_pa1/screens/home_page.dart';
import 'package:provider/provider.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
runApp(Ch... | 6 |
BackershanT/thought_box | ce32910 | lib/src/pages/splashscreen.dart | Dart | www.github.com/BackershanT/thought_box/tree/main/lib/src/pages/splashscreen.dart | https://raw.githubusercontent.com/BackershanT/thought_box/ce32910/lib/src/pages/splashscreen.dart | BackershanT/thought_box ce32910 lib/src/pages/splashscreen.dart | true | 200 | 771 | import 'dart:async';
import 'package:flutter/material.dart';
import 'package:thought_box/src/pages/home_page.dart';
class SplashScreen extends StatefulWidget {
const SplashScreen({Key? key}) : super(key: key);
@override
State<SplashScreen> createState() => _SplashScreenState();
}
class _SplashScreenState exte... | 5 |
sharyer-Ilyas-Khan/mobile_to_mobile_mirroring_app_under_dev | 2f1b783 | lib/app/modules/info_screen/views/info_screen_view.dart | Dart | www.github.com/sharyer-Ilyas-Khan/mobile_to_mobile_mirroring_app_under_dev/tree/main/lib/app/modules/info_screen/views/info_screen_view.dart | https://raw.githubusercontent.com/sharyer-Ilyas-Khan/mobile_to_mobile_mirroring_app_under_dev/2f1b783/lib/app/modules/info_screen/views/info_screen_view.dart | sharyer-Ilyas-Khan/mobile_to_mobile_mirroring_app_under_dev 2f1b783 lib/app/modules/info_screen/views/info_screen_view.dart | true | 200 | 3,041 | import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:get/get.dart';
import 'package:lottie/lottie.dart';
import 'package:mobile_to_mobile_mirroring_app/app/data/text_styles.dart';
import 'package:mobile_to_mobile_mirroring_app/app/modules/info_screen/widgets/continue_... | 0 |
SyedMansab123/arhat | 9fecc29 | lib/screens/Dashboard/Reports/expense_report.dart | Dart | www.github.com/SyedMansab123/arhat/tree/main/lib/screens/Dashboard/Reports/expense_report.dart | https://raw.githubusercontent.com/SyedMansab123/arhat/9fecc29/lib/screens/Dashboard/Reports/expense_report.dart | SyedMansab123/arhat 9fecc29 lib/screens/Dashboard/Reports/expense_report.dart | true | 200 | 6,825 | // // ignore_for_file: library_private_types_in_public_api, unnecessary_const, prefer_const_literals_to_create_immutables, unnecessary_to_list_in_spreads
// import 'package:arhat/screens/Dashboard/Reports/view_reports.dart';
// import 'package:flutter/material.dart';
// import 'package:arhat/common/widgets/customized_... | 4 |
akhmedov20/grandpharm | 3f06d0f | lib/src/ui/catalog/for men/filtr_screen.dart | Dart | www.github.com/akhmedov20/grandpharm/tree/main/lib/src/ui/catalog/for men/filtr_screen.dart | https://raw.githubusercontent.com/akhmedov20/grandpharm/3f06d0f/lib/src/ui/catalog/for%20men/filtr_screen.dart | akhmedov20/grandpharm 3f06d0f lib/src/ui/catalog/for men/filtr_screen.dart | true | 200 | 4,856 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:grandpharm/src/dialog/bottom-dialog/filter_dialog.dart';
import 'package:grandpharm/src/dialog/bottom-dialog/filtr_dialog.dart';
import... | 3 |
mhista/ahiaa | f6c7d3d | lib/core/dependency/init_dependencies.dart | Dart | www.github.com/mhista/ahiaa/tree/main/lib/core/dependency/init_dependencies.dart | https://raw.githubusercontent.com/mhista/ahiaa/f6c7d3d/lib/core/dependency/init_dependencies.dart | mhista/ahiaa f6c7d3d lib/core/dependency/init_dependencies.dart | true | 200 | 5,422 | import 'package:ahiaa/core/cubits/appstart/appstart_cubit.dart';
import 'package:ahiaa/core/cubits/imagePicker/image_picker.dart';
import 'package:ahiaa/core/cubits/navigation/navigation_cubit.dart';
import 'package:ahiaa/core/cubits/user/user_cubit.dart';
import 'package:ahiaa/core/dependency/banner_dependencies.dart'... | 2 |
AlexDB02/UserApp | 73fb98c | lib/screens/home.dart | Dart | www.github.com/AlexDB02/UserApp/tree/main/lib/screens/home.dart | https://raw.githubusercontent.com/AlexDB02/UserApp/73fb98c/lib/screens/home.dart | AlexDB02/UserApp 73fb98c lib/screens/home.dart | true | 200 | 1,495 | import 'package:flutter/material.dart';
class HomeScreen extends StatelessWidget {
const HomeScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
'Crear perfil',
style: TextStyle(fontWeight: FontWeight.bold, color... | 7 |
hanmango-o/we_eat | dcb8896 | lib/view_model/controller/auth_controller.dart | Dart | www.github.com/hanmango-o/we_eat/tree/main/lib/view_model/controller/auth_controller.dart | https://raw.githubusercontent.com/hanmango-o/we_eat/dcb8896/lib/view_model/controller/auth_controller.dart | hanmango-o/we_eat dcb8896 lib/view_model/controller/auth_controller.dart | true | 200 | 3,378 | import 'package:get/get.dart';
import 'package:we_eat/asset/status/auth.dart';
import 'package:we_eat/model/vo/user_vo.dart';
/// [AuthController]는 Sign 상태와 처리 결과를 반환하여 전역적으로 [Auth] 상태를 관리합니다.
///
/// [Auth]와 관련된 모든 것을 해당 Controller에서 관리합니다. 이러한 관리를 위해 아래의 기능을 포함하고 있습니다.
///
/// 주요기능:
/// 1. 현재 사용자 상태 저장 : [status]
//... | 1 |
OlgaYarukhina/quiz_app | 31696b1 | lib/screens/question_screen.dart | Dart | www.github.com/OlgaYarukhina/quiz_app/tree/main/lib/screens/question_screen.dart | https://raw.githubusercontent.com/OlgaYarukhina/quiz_app/31696b1/lib/screens/question_screen.dart | OlgaYarukhina/quiz_app 31696b1 lib/screens/question_screen.dart | true | 200 | 4,839 | import 'package:flutter/material.dart';
import 'package:quiz_app/core/constants.dart';
import 'package:quiz_app/models/quiz.dart';
class QuestionScreen extends StatefulWidget {
const QuestionScreen({super.key});
@override
QuestionScreenState createState() => QuestionScreenState();
}
class QuestionScreenState e... | 6 |
NayeemBelal/chargeota-hack-utd | 1ed3246 | lib/Authentication/auth_service.dart | Dart | www.github.com/NayeemBelal/chargeota-hack-utd/tree/main/lib/Authentication/auth_service.dart | https://raw.githubusercontent.com/NayeemBelal/chargeota-hack-utd/1ed3246/lib/Authentication/auth_service.dart | NayeemBelal/chargeota-hack-utd 1ed3246 lib/Authentication/auth_service.dart | true | 200 | 1,996 | import 'package:firebase_auth/firebase_auth.dart';
import 'auth_exceptions.dart'; // Assuming you have created this file as discussed earlier
class Auth {
final FirebaseAuth _firebaseAuth = FirebaseAuth.instance;
User? get currentUser => _firebaseAuth.currentUser;
Stream<User?> get authStateChanges => _firebase... | 5 |
orinizri/items_flutter_app | c7641ce | lib/screens/tabs.dart | Dart | www.github.com/orinizri/items_flutter_app/tree/main/lib/screens/tabs.dart | https://raw.githubusercontent.com/orinizri/items_flutter_app/c7641ce/lib/screens/tabs.dart | orinizri/items_flutter_app c7641ce lib/screens/tabs.dart | true | 200 | 2,232 | import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:shic/models/item.dart';
import 'package:shic/providers/favorites_provider.dart';
import 'package:shic/providers/filters_provider.dart';
import 'package:shic/providers/items_provider.dart';
import 'package:sh... | 0 |
racketscore/racketscore.github.io | 69db3b4 | lib/view/components/empty_list_widget.dart | Dart | www.github.com/racketscore/racketscore.github.io/tree/main/lib/view/components/empty_list_widget.dart | https://raw.githubusercontent.com/racketscore/racketscore.github.io/69db3b4/lib/view/components/empty_list_widget.dart | racketscore/racketscore.github.io 69db3b4 lib/view/components/empty_list_widget.dart | true | 200 | 395 | import 'package:flutter/material.dart';
class EmptyListWidget extends StatelessWidget {
final String message;
const EmptyListWidget({Key? key, this.message = 'List is empty'}) : super(key: key);
@override
Widget build(BuildContext context) {
return Center(
child: Text(
message,
styl... | 4 |
Eyad-Ite/fly_on | 7fe3c16 | lib/services/counrty_service.dart | Dart | www.github.com/Eyad-Ite/fly_on/tree/main/lib/services/counrty_service.dart | https://raw.githubusercontent.com/Eyad-Ite/fly_on/7fe3c16/lib/services/counrty_service.dart | Eyad-Ite/fly_on 7fe3c16 lib/services/counrty_service.dart | true | 200 | 321 | import 'package:fly_on/constants/api_paths.dart';
import 'package:get/get.dart';
import 'package:fly_on/helper/api.dart';
class CountryService {
Future<Response> countryDetails(String countryId) async {
return await Api().post(url: ApiPaths.baseUrl + ApiPaths.countryDetailsUrl,body: {"id" : countryId});
}
... | 3 |
MohamedArbani/bike_near_me | 460c126 | lib/main3.dart | Dart | www.github.com/MohamedArbani/bike_near_me/tree/main/lib/main3.dart | https://raw.githubusercontent.com/MohamedArbani/bike_near_me/460c126/lib/main3.dart | MohamedArbani/bike_near_me 460c126 lib/main3.dart | true | 200 | 5,793 | import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
/*
*/
void main() {
/* runApp(
MaterialApp(
title: 'Named Routes Demo',
theme: ThemeData(
/* colorScheme: ColorScheme.fromSwatch(
primarySwatch: Colors.orange,
), */
primarySw... | 1 |
yashh1711/whatsapp_ui | 6c854d1 | lib/widgets/calls_widget.dart | Dart | www.github.com/yashh1711/whatsapp_ui/tree/main/lib/widgets/calls_widget.dart | https://raw.githubusercontent.com/yashh1711/whatsapp_ui/6c854d1/lib/widgets/calls_widget.dart | yashh1711/whatsapp_ui 6c854d1 lib/widgets/calls_widget.dart | true | 200 | 1,053 | import 'package:flutter/material.dart';
class CallWidget extends StatelessWidget {
const CallWidget({
super.key,
});
@override
Widget build(BuildContext context) {
return ListView.builder(
itemCount: 10,
itemBuilder: (context, index) => ListTile(
leading: const CircleAvatar(
... | 5 |
Mikkelet/pace-clock-flutter | 9f9c103 | lib/presentation/clock_page.dart | Dart | www.github.com/Mikkelet/pace-clock-flutter/tree/main/lib/presentation/clock_page.dart | https://raw.githubusercontent.com/Mikkelet/pace-clock-flutter/9f9c103/lib/presentation/clock_page.dart | Mikkelet/pace-clock-flutter 9f9c103 lib/presentation/clock_page.dart | true | 200 | 1,873 | import 'package:flutter/material.dart';
import 'package:four_hand_clock_app/presentation/clock_dimensions.dart';
import 'package:four_hand_clock_app/presentation/clock_intervals_view.dart';
import 'package:four_hand_clock_app/presentation/clock_painter.dart';
import 'package:four_hand_clock_app/presentation/clock_hands... | 0 |
hoangljnk/PRACTICEOFDART | 586c33b | Bài thực hành 03/cau4.dart | Dart | www.github.com/hoangljnk/PRACTICEOFDART/tree/main/Bài thực hành 03/cau4.dart | https://raw.githubusercontent.com/hoangljnk/PRACTICEOFDART/586c33b/B%C3%A0i%20th%E1%BB%B1c%20h%C3%A0nh%2003/cau4.dart | hoangljnk/PRACTICEOFDART 586c33b Bài thực hành 03/cau4.dart | true | 200 | 253 | import 'dart:io';
void dientichht(){
print("Nhập bán kính hình tròn:");
double? n = double.parse(stdin.readLineSync()!);
double dt = n * n * 3.14;
print("Diện tích hình tròn là: $dt");
}
void main(){
dientichht();
} | 2 |
sylvio-jerry/RenameCapture | 7b86e39 | lib/shared/widgets/input_search.dart | Dart | www.github.com/sylvio-jerry/RenameCapture/tree/main/lib/shared/widgets/input_search.dart | https://raw.githubusercontent.com/sylvio-jerry/RenameCapture/7b86e39/lib/shared/widgets/input_search.dart | sylvio-jerry/RenameCapture 7b86e39 lib/shared/widgets/input_search.dart | true | 200 | 1,321 | import 'package:flutter/material.dart';
import 'package:rename_capture/shared/constants/app_color.dart';
import 'package:rename_capture/shared/constants/font_size.dart';
class InputSearch extends StatelessWidget {
const InputSearch({super.key, this.searchEditingController, this.onChange});
final TextEditingControl... | 6 |
maithenghia2003/MusicPlayer_Mobile | bb009e2 | lib/firebase/firebase_auth.dart | Dart | www.github.com/maithenghia2003/MusicPlayer_Mobile/tree/main/lib/firebase/firebase_auth.dart | https://raw.githubusercontent.com/maithenghia2003/MusicPlayer_Mobile/bb009e2/lib/firebase/firebase_auth.dart | maithenghia2003/MusicPlayer_Mobile bb009e2 lib/firebase/firebase_auth.dart | true | 200 | 1,962 | import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_database/firebase_database.dart';
class FirAuth {
final FirebaseAuth _firebaseAuth = FirebaseAuth.instance;
Future<void> signUp({
required String email,
required String password,
String role = "user",
required Function onS... | 4 |
pedrovs2003/flutter | 9ab36fa | favoritos_page.dart | Dart | www.github.com/pedrovs2003/flutter/tree/main/favoritos_page.dart | https://raw.githubusercontent.com/pedrovs2003/flutter/9ab36fa/favoritos_page.dart | pedrovs2003/flutter 9ab36fa favoritos_page.dart | true | 200 | 694 | import 'package:flutter/material.dart';
class FavoritosPage extends StatelessWidget {
const FavoritosPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.yellow,
appBar: AppBar(
title: const Text('Página de Favoritos'),
... | 3 |
andysooho/flutter_lv2 | 9b580c7 | lib/user/provider/auth_provider.dart | Dart | www.github.com/andysooho/flutter_lv2/tree/main/lib/user/provider/auth_provider.dart | https://raw.githubusercontent.com/andysooho/flutter_lv2/9b580c7/lib/user/provider/auth_provider.dart | andysooho/flutter_lv2 9b580c7 lib/user/provider/auth_provider.dart | true | 200 | 3,130 | import 'package:flutter/material.dart';
import 'package:flutter_lv2/common/view/root_tab.dart';
import 'package:flutter_lv2/order/view/order_done_screen.dart';
import 'package:flutter_lv2/restaurant/view/basket_screen.dart';
import 'package:flutter_lv2/restaurant/view/restaurant_detail_screen.dart';
import 'package:flu... | 7 |
Yash2121m/Coffee_Shop_Application | 5609dc5 | lib/Screens/profile_page.dart | Dart | www.github.com/Yash2121m/Coffee_Shop_Application/tree/main/lib/Screens/profile_page.dart | https://raw.githubusercontent.com/Yash2121m/Coffee_Shop_Application/5609dc5/lib/Screens/profile_page.dart | Yash2121m/Coffee_Shop_Application 5609dc5 lib/Screens/profile_page.dart | true | 200 | 2,917 | import 'package:Coffee_Shop_Application/Utils/colors.dart';
import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import '../Database/app_user.dart';
class UserProfilePage extends StatefulWidget {
@override
_UserProfilePage... | 1 |
AmadouTidianeBah/wallet_ui | c87216c | lib/component/wallet_information.dart | Dart | www.github.com/AmadouTidianeBah/wallet_ui/tree/main/lib/component/wallet_information.dart | https://raw.githubusercontent.com/AmadouTidianeBah/wallet_ui/c87216c/lib/component/wallet_information.dart | AmadouTidianeBah/wallet_ui c87216c lib/component/wallet_information.dart | true | 200 | 1,679 | import 'package:flutter/material.dart';
class WalletInformation extends StatelessWidget {
final String iconPath;
final String title;
final String description;
const WalletInformation({
super.key,
required this.iconPath,
required this.title,
required this.description
});
@override
Widget ... | 2 |
CactuZzRm/lens_notification_app_v2 | ee525ba | lib/pages/home_page/components/lens_type_dialog_window.dart | Dart | www.github.com/CactuZzRm/lens_notification_app_v2/tree/main/lib/pages/home_page/components/lens_type_dialog_window.dart | https://raw.githubusercontent.com/CactuZzRm/lens_notification_app_v2/ee525ba/lib/pages/home_page/components/lens_type_dialog_window.dart | CactuZzRm/lens_notification_app_v2 ee525ba lib/pages/home_page/components/lens_type_dialog_window.dart | true | 200 | 1,972 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import '../../../constants/lens_types.dart';
import '../../dialog_handler/cubit/dialog_handler_cubit.dart';
import '../bloc/home_page_bloc.dart';
import 'dialog_buttons.dart';
import 'dialog_selectable_element.dart';
Glo... | 0 |
bobbyz007/flutter_samples | 7992803 | lib/demo/scroll_view_persistent_header.dart | Dart | www.github.com/bobbyz007/flutter_samples/tree/main/lib/demo/scroll_view_persistent_header.dart | https://raw.githubusercontent.com/bobbyz007/flutter_samples/7992803/lib/demo/scroll_view_persistent_header.dart | bobbyz007/flutter_samples 7992803 lib/demo/scroll_view_persistent_header.dart | true | 200 | 2,913 | import 'package:flutter/material.dart';
import 'dart:math';
void main() => runApp(CustomScrollViewHeaderWidget());
class CustomScrollViewHeaderWidget extends StatelessWidget {
SliverPersistentHeader makeHeader(String header) {
return SliverPersistentHeader(
pinned: true,
delegate: _SliverAppBarDeleg... | 6 |
nurike22/dart-lesson-variables- | efbb349 | bin/lesson8.dart | Dart | www.github.com/nurike22/dart-lesson-variables-/tree/main/bin/lesson8.dart | https://raw.githubusercontent.com/nurike22/dart-lesson-variables-/efbb349/bin/lesson8.dart | nurike22/dart-lesson-variables- efbb349 bin/lesson8.dart | true | 200 | 1,831 | void main() {
// for (int i = 0; i <10; i++) {
// print(i);
// if (i==5){
// break;
// }
// }
// List a = [1,4,6,78,0,123];
// for (int i = 0; i < a.length; i++) {
// print(a[i]);
// }
// List a = [1,4,6,78,0,123];
// int counter =0;
// for (int i = 0; i < a.length; i++) {
// counter+... | 4 |
AndrewYKJ/BMAgriCare_project | 11c4548 | lib/controllers/home/crop_issue_detail.dart | Dart | www.github.com/AndrewYKJ/BMAgriCare_project/tree/main/lib/controllers/home/crop_issue_detail.dart | https://raw.githubusercontent.com/AndrewYKJ/BMAgriCare_project/11c4548/lib/controllers/home/crop_issue_detail.dart | AndrewYKJ/BMAgriCare_project 11c4548 lib/controllers/home/crop_issue_detail.dart | true | 200 | 39,713 | import 'dart:io';
import 'package:behn_meyer_flutter/const/app_color.dart';
import 'package:behn_meyer_flutter/const/app_font.dart';
import 'package:behn_meyer_flutter/const/constants.dart';
import 'package:behn_meyer_flutter/const/util.dart';
import 'package:behn_meyer_flutter/dio/api/home/crop_issue_detail_api.dart'... | 5 |
nudchi/nudchi.githab.io | cc0d7ee | flutter_conn_database_1/lib/main.dart | Dart | www.github.com/nudchi/nudchi.githab.io/tree/main/flutter_conn_database_1/lib/main.dart | https://raw.githubusercontent.com/nudchi/nudchi.githab.io/cc0d7ee/flutter_conn_database_1/lib/main.dart | nudchi/nudchi.githab.io cc0d7ee flutter_conn_database_1/lib/main.dart | true | 200 | 1,966 | import 'package:flutter/material.dart';
import 'package:flutter_conn_database/providers/transaction_provider.dart';
import 'package:flutter_conn_database/screens.dart/form_screen.dart';
import 'package:flutter_conn_database/screens.dart/home_screen.dart';
import 'package:flutter_conn_database/screens/form_screen.dart';... | 1 |
onezerocompany/zero-ui | be50ef5 | packages/flutter/lib/src/app/router/route_from_entry.dart | Dart | www.github.com/onezerocompany/zero-ui/tree/main/packages/flutter/lib/src/app/router/route_from_entry.dart | https://raw.githubusercontent.com/onezerocompany/zero-ui/be50ef5/packages/flutter/lib/src/app/router/route_from_entry.dart | onezerocompany/zero-ui be50ef5 packages/flutter/lib/src/app/router/route_from_entry.dart | true | 200 | 3,477 | import 'dart:async';
import 'package:go_router/go_router.dart';
import 'package:zero_ui/zero_ui.dart';
import 'route_observer.dart';
String? redirect(BuildContext context, GoRouterState state) {
// Update current entry
final authConfig = globalContainer.read(authConfigProvider);
final loggedIn = globalContaine... | 0 |
hyunho4532/FlutterTooMaket | 4bb3ede | lib/widgets/register/ref/build_register_title_main.dart | Dart | www.github.com/hyunho4532/FlutterTooMaket/tree/main/lib/widgets/register/ref/build_register_title_main.dart | https://raw.githubusercontent.com/hyunho4532/FlutterTooMaket/4bb3ede/lib/widgets/register/ref/build_register_title_main.dart | hyunho4532/FlutterTooMaket 4bb3ede lib/widgets/register/ref/build_register_title_main.dart | true | 200 | 816 | import 'package:customer_manager/const/register_animated_text_kit.dart';
import 'package:flutter/material.dart';
class BuildRegisterMainTitle extends StatefulWidget {
const BuildRegisterMainTitle({Key? key}) : super(key: key);
@override
State<BuildRegisterMainTitle> createState() => _BuildRegisterMainTitleState... | 2 |
danielyxyang/birthdays | e6e8a0c | lib/src/ui/pages/settingsPage.dart | Dart | www.github.com/danielyxyang/birthdays/tree/main/lib/src/ui/pages/settingsPage.dart | https://raw.githubusercontent.com/danielyxyang/birthdays/e6e8a0c/lib/src/ui/pages/settingsPage.dart | danielyxyang/birthdays e6e8a0c lib/src/ui/pages/settingsPage.dart | true | 200 | 963 |
import 'package:birthdays/src/resources/settings.dart';
import 'package:flutter/material.dart';
import 'package:birthdays/src/ui/widgets/pageScaffold.dart';
class SettingsPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return PageScaffold(
isSubpage: true,
title: "Set... | 6 |
Sreejith779/sqflite_login | 0c73240 | lib/features/register/bloc/register_bloc.dart | Dart | www.github.com/Sreejith779/sqflite_login/tree/main/lib/features/register/bloc/register_bloc.dart | https://raw.githubusercontent.com/Sreejith779/sqflite_login/0c73240/lib/features/register/bloc/register_bloc.dart | Sreejith779/sqflite_login 0c73240 lib/features/register/bloc/register_bloc.dart | true | 200 | 815 | import 'dart:async';
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
import 'package:sqflite_login/database/sqlHelper.dart';
part 'register_event.dart';
part 'register_state.dart';
class RegisterBloc extends Bloc<RegisterEvent, RegisterState> {
RegisterBloc() : super(RegisterInitial()) {
on<Regis... | 5 |
Obinna-e/PokeDex | 8b8cf81 | lib/screens/home.dart | Dart | www.github.com/Obinna-e/PokeDex/tree/main/lib/screens/home.dart | https://raw.githubusercontent.com/Obinna-e/PokeDex/8b8cf81/lib/screens/home.dart | Obinna-e/PokeDex 8b8cf81 lib/screens/home.dart | true | 200 | 1,631 | import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class... | 7 |
TuqaBakr/weam | 126e2a4 | lib/services/srevices.dart | Dart | www.github.com/TuqaBakr/weam/tree/main/lib/services/srevices.dart | https://raw.githubusercontent.com/TuqaBakr/weam/126e2a4/lib/services/srevices.dart | TuqaBakr/weam 126e2a4 lib/services/srevices.dart | true | 200 | 384 | import 'package:get/get.dart';
import 'package:shared_preferences/shared_preferences.dart';
class MyServices extends GetxService{
late SharedPreferences sharedPreferances ;
Future<MyServices> init() async{
sharedPreferances = await SharedPreferences.getInstance() ;
return this ;
}
}
initialService... | 1 |
JesusMayuri7/rrhh_flutter | faa0b5b | lib/app/modules/requerimientos/datasource/i_requerimiento_initial_datasource.dart | Dart | www.github.com/JesusMayuri7/rrhh_flutter/tree/main/lib/app/modules/requerimientos/datasource/i_requerimiento_initial_datasource.dart | https://raw.githubusercontent.com/JesusMayuri7/rrhh_flutter/faa0b5b/lib/app/modules/requerimientos/datasource/i_requerimiento_initial_datasource.dart | JesusMayuri7/rrhh_flutter faa0b5b lib/app/modules/requerimientos/datasource/i_requerimiento_initial_datasource.dart | true | 200 | 2,199 | // ignore_for_file: public_member_api_docs, sort_constructors_first
import 'dart:io';
import 'package:rrhh_clean/core/data/datasource/i_areas_datasource_app.dart';
import 'package:rrhh_clean/core/data/datasource/i_fuentes_datasource_app.dart';
import 'package:rrhh_clean/core/data/datasource/i_metas_datasource_app.dart... | 3 |
eyad-hussein/styleach-app | 66532cf | lib/widgets/onboarding-screen/list_view_builder_brands_widget.dart | Dart | www.github.com/eyad-hussein/styleach-app/tree/main/lib/widgets/onboarding-screen/list_view_builder_brands_widget.dart | https://raw.githubusercontent.com/eyad-hussein/styleach-app/66532cf/lib/widgets/onboarding-screen/list_view_builder_brands_widget.dart | eyad-hussein/styleach-app 66532cf lib/widgets/onboarding-screen/list_view_builder_brands_widget.dart | true | 200 | 832 | import 'package:app/controllers/product_controller.dart';
import 'package:flutter/material.dart';
import 'custom_brand_card_widget.dart';
import 'package:get/get.dart';
class ListViewBrands extends StatelessWidget {
const ListViewBrands({
super.key,
});
@override
Widget build(BuildContext context) {
f... | 4 |
MohamedEsma3il/todo-algoriza | ece8dcb | lib/core/util/widgets/my_divider.dart | Dart | www.github.com/MohamedEsma3il/todo-algoriza/tree/main/lib/core/util/widgets/my_divider.dart | https://raw.githubusercontent.com/MohamedEsma3il/todo-algoriza/ece8dcb/lib/core/util/widgets/my_divider.dart | MohamedEsma3il/todo-algoriza ece8dcb lib/core/util/widgets/my_divider.dart | true | 200 | 299 | import 'package:flutter/material.dart';
class MyDivider extends StatelessWidget {
const MyDivider({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
height: 3.0,
width: double.infinity,
color: Colors.grey[300],
);
}
}
| 0 |
issueye/grape_ui | e6d3fdb | lib/pages/port/node/dialog.dart | Dart | www.github.com/issueye/grape_ui/tree/main/lib/pages/port/node/dialog.dart | https://raw.githubusercontent.com/issueye/grape_ui/e6d3fdb/lib/pages/port/node/dialog.dart | issueye/grape_ui e6d3fdb lib/pages/port/node/dialog.dart | true | 200 | 6,079 | import 'package:flutter/material.dart';
import 'package:go_grape_ui/components/bar_button.dart';
import 'package:go_grape_ui/components/custom_button.dart';
import 'package:go_grape_ui/components/custom_divider.dart';
import 'package:go_grape_ui/components/custom_form_text_field.dart';
import 'package:go_grape_ui/compo... | 6 |
JVictorC/Teste_Pratico_Snapfi | faa6e03 | test/src/modules/home/infra/repositories/get_pokemon_repository_test.dart | Dart | www.github.com/JVictorC/Teste_Pratico_Snapfi/tree/main/test/src/modules/home/infra/repositories/get_pokemon_repository_test.dart | https://raw.githubusercontent.com/JVictorC/Teste_Pratico_Snapfi/faa6e03/test/src/modules/home/infra/repositories/get_pokemon_repository_test.dart | JVictorC/Teste_Pratico_Snapfi faa6e03 test/src/modules/home/infra/repositories/get_pokemon_repository_test.dart | true | 200 | 5,380 | import 'package:flutter_test/flutter_test.dart';
import 'package:mocktail/mocktail.dart';
import 'package:pokedex_snapfi/main.dart';
import '../../../../../mock/http_client_mock.dart';
import '../../../../../mock/pokemon_mock.dart';
class GetPokemonDataMock extends Mock implements IGetPokemonData {}
void main() {
... | 5 |
Wayaer/universally | 4bae43b | lib/src/dependencies/hive.dart | Dart | www.github.com/Wayaer/universally/tree/main/lib/src/dependencies/hive.dart | https://raw.githubusercontent.com/Wayaer/universally/4bae43b/lib/src/dependencies/hive.dart | Wayaer/universally 4bae43b lib/src/dependencies/hive.dart | true | 200 | 5,900 | import 'dart:convert';
import 'package:universally/universally.dart';
abstract class HiveBox {
bool isInitialize = false;
String? _name;
bool _lazy = false;
bool _isOpen = false;
Future<void> initialize(
String name, {
String? subDir,
bool lazy = false,
}) async {
if (!isInitialize) {
... | 2 |
MyoMin-Latt/Dart-Basic | 012019c | bin/Testing_file/splict_test.dart | Dart | www.github.com/MyoMin-Latt/Dart-Basic/tree/main/bin/Testing_file/splict_test.dart | https://raw.githubusercontent.com/MyoMin-Latt/Dart-Basic/012019c/bin/Testing_file/splict_test.dart | MyoMin-Latt/Dart-Basic 012019c bin/Testing_file/splict_test.dart | true | 200 | 620 | void main() {
// String h = "Hello/Mg/Tun";
// print(h.split('/').last);
// print(h.split('/').first);
// print(h.split('/').toList());
// print(h.split('/').take(1));
var string = "Hello world 1234";
// print(string);
// print(string.split(" "));
// string.split('').join('-') == string;
// print(s... | 7 |
ZiadAhmedHelmy/Jarjir_App | d61332e | lib/ViewModel/bloc/jarjirCubit.dart | Dart | www.github.com/ZiadAhmedHelmy/Jarjir_App/tree/main/lib/ViewModel/bloc/jarjirCubit.dart | https://raw.githubusercontent.com/ZiadAhmedHelmy/Jarjir_App/d61332e/lib/ViewModel/bloc/jarjirCubit.dart | ZiadAhmedHelmy/Jarjir_App d61332e lib/ViewModel/bloc/jarjirCubit.dart | true | 200 | 1,397 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:gargirak_app/ViewModel/bloc/JarjirStates.dart';
import '../data/local/dataBase.dart';
class JarjirCubit extends Cubit<JarjirStates> {
JarjirCubit() : super(JarjirInitial());
static JarjirCubit get(context) => ... | 1 |
TinasheMK/docx-formatter | bea0a23 | lib/screens/register/new/new_register_home_screen.dart | Dart | www.github.com/TinasheMK/docx-formatter/tree/main/lib/screens/register/new/new_register_home_screen.dart | https://raw.githubusercontent.com/TinasheMK/docx-formatter/bea0a23/lib/screens/register/new/new_register_home_screen.dart | TinasheMK/docx-formatter bea0a23 lib/screens/register/new/new_register_home_screen.dart | true | 200 | 1,976 | import '../../../core/utils/responsive.dart';
import '../../dashboard/components/side_menu.dart';
import 'package:flutter/material.dart';
import 'new_register_screen.dart';
class NewRegisterHome extends StatefulWidget {
NewRegisterHome({required this.title, required this.code, this.companyId});
final String titl... | 3 |
Malcolm-xXx/Hustlers_icp | da4fe25 | lib/Screen/get_hustler_screen.dart | Dart | www.github.com/Malcolm-xXx/Hustlers_icp/tree/main/lib/Screen/get_hustler_screen.dart | https://raw.githubusercontent.com/Malcolm-xXx/Hustlers_icp/da4fe25/lib/Screen/get_hustler_screen.dart | Malcolm-xXx/Hustlers_icp da4fe25 lib/Screen/get_hustler_screen.dart | true | 200 | 12,714 | import 'dart:async';
import 'package:flutter_polyline_points/flutter_polyline_points.dart';
import 'package:geocoder2/geocoder2.dart';
import 'package:geolocator/geolocator.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import '../Global/global.dart';
import '../Global/map_key.dart';
import '../S... | 4 |
tulsieroyt/focus_next | 38d3999 | lib/src/common/widgets/see_all_section.dart | Dart | www.github.com/tulsieroyt/focus_next/tree/main/lib/src/common/widgets/see_all_section.dart | https://raw.githubusercontent.com/tulsieroyt/focus_next/38d3999/lib/src/common/widgets/see_all_section.dart | tulsieroyt/focus_next 38d3999 lib/src/common/widgets/see_all_section.dart | true | 200 | 1,401 | import 'package:flutter/material.dart';
import '../../constraints/colors.dart';
class SeeAllSection extends StatelessWidget {
const SeeAllSection({
super.key,
required this.sectionHeading,
required this.endButton,
});
final String sectionHeading;
final bool endButton;
@override
Widget build(... | 6 |
Adeyemi-Favour/Learning-Dart | 310c757 | Control_flow/calculator_exercise.dart | Dart | www.github.com/Adeyemi-Favour/Learning-Dart/tree/main/Control_flow/calculator_exercise.dart | https://raw.githubusercontent.com/Adeyemi-Favour/Learning-Dart/310c757/Control_flow/calculator_exercise.dart | Adeyemi-Favour/Learning-Dart 310c757 Control_flow/calculator_exercise.dart | true | 200 | 443 | enum operation { plus, minus, multiply, divide }
void main() {
const a = 6;
const b = 2;
const op = operation.multiply;
switch (op) {
case operation.plus:
print('$a + $b = ${a+b}');
break;
case operation.minus:
print('$a - $b = ${a-b}');
break;
case operation.multiply:
... | 5 |
Jinwook-Song/e_commerce_2024 | 1c85a62 | lib/core/utils/bottom_sheet/widgets/add_cart_btn.dart | Dart | www.github.com/Jinwook-Song/e_commerce_2024/tree/main/lib/core/utils/bottom_sheet/widgets/add_cart_btn.dart | https://raw.githubusercontent.com/Jinwook-Song/e_commerce_2024/1c85a62/lib/core/utils/bottom_sheet/widgets/add_cart_btn.dart | Jinwook-Song/e_commerce_2024 1c85a62 lib/core/utils/bottom_sheet/widgets/add_cart_btn.dart | true | 200 | 1,992 | import 'package:e_commerce/core/theme/custom/custom_font_weight.dart';
import 'package:e_commerce/core/utils/extensions.dart';
import 'package:e_commerce/presentation/screens/cart_list/bloc/cart_list_bloc/cart_list_bloc.dart';
import 'package:e_commerce/presentation/screens/main/bloc/cart_bloc/cart_bloc.dart';
import '... | 2 |
nyang-code/EyeForYouapp_FrontEnd | 7067fc1 | lib/ex_adoption.dart | Dart | www.github.com/nyang-code/EyeForYouapp_FrontEnd/tree/main/lib/ex_adoption.dart | https://raw.githubusercontent.com/nyang-code/EyeForYouapp_FrontEnd/7067fc1/lib/ex_adoption.dart | nyang-code/EyeForYouapp_FrontEnd 7067fc1 lib/ex_adoption.dart | true | 200 | 3,921 | import 'package:flutter/material.dart';
class ExAdoption extends StatelessWidget {
const ExAdoption({Key? key}) : super(key: key);
// 기본 텍스트 스타일
TextSpan normalText(String text) {
return TextSpan(text: text + "\n\n");
}
// 굵은 텍스트 스타일
TextSpan boldText(String text) {
return TextSpan(
text:... | 7 |
evan8133/bus_booking | 90c3173 | lib/admin/manage/schedule/edit_schedule.dart | Dart | www.github.com/evan8133/bus_booking/tree/main/lib/admin/manage/schedule/edit_schedule.dart | https://raw.githubusercontent.com/evan8133/bus_booking/90c3173/lib/admin/manage/schedule/edit_schedule.dart | evan8133/bus_booking 90c3173 lib/admin/manage/schedule/edit_schedule.dart | true | 200 | 5,947 | import 'package:auto_route/auto_route.dart';
import 'package:bus_booking/routes/routes.gr.dart';
import 'package:bus_booking/utils/input_box.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:provider/provider.dart';
import '../../../models/bus.da... | 1 |
silvanavaz13/Projeto-Faculdade | 7bc493b | lib/ui/home.dart | Dart | www.github.com/silvanavaz13/Projeto-Faculdade/tree/main/lib/ui/home.dart | https://raw.githubusercontent.com/silvanavaz13/Projeto-Faculdade/7bc493b/lib/ui/home.dart | silvanavaz13/Projeto-Faculdade 7bc493b lib/ui/home.dart | true | 200 | 3,828 | import 'package:flutter/material.dart';
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
GlobalKey<FormState> _formKey = GlobalKey<FormState>();
TextEditingController _weightController = TextEditingController();
TextEditingCont... | 0 |
ashrafffathalla/darakson | 46fbcaf | lib/modules/home/search_screen/presentaion/map_list_view.dart | Dart | www.github.com/ashrafffathalla/darakson/tree/main/lib/modules/home/search_screen/presentaion/map_list_view.dart | https://raw.githubusercontent.com/ashrafffathalla/darakson/46fbcaf/lib/modules/home/search_screen/presentaion/map_list_view.dart | ashrafffathalla/darakson 46fbcaf lib/modules/home/search_screen/presentaion/map_list_view.dart | true | 200 | 3,190 | import 'package:darakson/language/locale.dart';
import 'package:darakson/modules/home/all_branching/data/models/branch_model.dart';
import 'package:darakson/modules/home/search_screen/data/models/areas_model.dart';
import 'package:darakson/modules/home/search_screen/presentaion/widget/location_list_view.dart';
import '... | 4 |
Victor-Oluwa/husbandman | 4c5cf7c | lib/src/payment/presentation/view/add_card_view.dart | Dart | www.github.com/Victor-Oluwa/husbandman/tree/main/lib/src/payment/presentation/view/add_card_view.dart | https://raw.githubusercontent.com/Victor-Oluwa/husbandman/4c5cf7c/lib/src/payment/presentation/view/add_card_view.dart | Victor-Oluwa/husbandman 4c5cf7c lib/src/payment/presentation/view/add_card_view.dart | true | 200 | 11,632 | import 'dart:developer';
import 'package:credit_card_validator/credit_card_validator.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_credit_card/flutter_credit_card.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:hu... | 6 |
dimeprog/crudFirebaseApp | daa4565 | crudfirebaseapp/lib/Screens/Home/home_screen.dart | Dart | www.github.com/dimeprog/crudFirebaseApp/tree/main/crudfirebaseapp/lib/Screens/Home/home_screen.dart | https://raw.githubusercontent.com/dimeprog/crudFirebaseApp/daa4565/crudfirebaseapp/lib/Screens/Home/home_screen.dart | dimeprog/crudFirebaseApp daa4565 crudfirebaseapp/lib/Screens/Home/home_screen.dart | true | 200 | 3,766 | import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:crudfirebaseapp/firebase_data/data.dart';
import 'package:flutter/material.dart';
import 'package:flutter/src/widgets/container.dart';
import 'package:flutter/src/widgets/framework.dart';
class HomeScreen extends StatelessWidget {
const HomeScree... | 2 |
labihi/your-body-lab-app | 5527ece | lib/pages/training_workouts/training_list/training_list.dart | Dart | www.github.com/labihi/your-body-lab-app/tree/main/lib/pages/training_workouts/training_list/training_list.dart | https://raw.githubusercontent.com/labihi/your-body-lab-app/5527ece/lib/pages/training_workouts/training_list/training_list.dart | labihi/your-body-lab-app 5527ece lib/pages/training_workouts/training_list/training_list.dart | true | 200 | 2,667 | import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'package:your_body_lab/models/paginated_response.model.dart';
import 'package:your_body_lab/models/workout_plan.model.dart';
import 'package:your_body_lab/pages/training_workouts/training_list/parts/training_card.dart';
import 'pa... | 5 |
Tursunali008/vazifa8-main | 6109b18 | lib/views/widgets/navigation_bar.dart | Dart | www.github.com/Tursunali008/vazifa8-main/tree/main/lib/views/widgets/navigation_bar.dart | https://raw.githubusercontent.com/Tursunali008/vazifa8-main/6109b18/lib/views/widgets/navigation_bar.dart | Tursunali008/vazifa8-main 6109b18 lib/views/widgets/navigation_bar.dart | true | 200 | 3,087 |
import 'package:flutter/material.dart';
import 'package:vazifa8/views/screens/home_screen.dart';
import 'package:vazifa8/views/screens/profile_screen.dart';
import 'package:vazifa8/views/screens/results_screen.dart';
class NavigationBars extends StatefulWidget {
final ValueChanged<bool> onThemeChanged;
final Valu... | 7 |
PLETRAS/aplikacja_czujniki_1_0_0 | 2897771 | lib/polaczenieBluetooth.dart | Dart | www.github.com/PLETRAS/aplikacja_czujniki_1_0_0/tree/main/lib/polaczenieBluetooth.dart | https://raw.githubusercontent.com/PLETRAS/aplikacja_czujniki_1_0_0/2897771/lib/polaczenieBluetooth.dart | PLETRAS/aplikacja_czujniki_1_0_0 2897771 lib/polaczenieBluetooth.dart | true | 200 | 15,529 | import 'dart:async';
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter_bluetooth_serial/flutter_bluetooth_serial.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:app_settings/app_settings.dart';
import 'data.dart';
import 'package:network_info_plus/network_inf... | 3 |
BeshoyMarkElMallah/Tourister | a8ecd45 | lib/Features/home/presentation/views/widgets/location_notification_row.dart | Dart | www.github.com/BeshoyMarkElMallah/Tourister/tree/main/lib/Features/home/presentation/views/widgets/location_notification_row.dart | https://raw.githubusercontent.com/BeshoyMarkElMallah/Tourister/a8ecd45/lib/Features/home/presentation/views/widgets/location_notification_row.dart | BeshoyMarkElMallah/Tourister a8ecd45 lib/Features/home/presentation/views/widgets/location_notification_row.dart | true | 200 | 540 | import 'package:flutter/material.dart';
import 'package:tourister/core/utils/styles.dart';
class LocationNotificationRow extends StatelessWidget {
const LocationNotificationRow({
super.key,
});
@override
Widget build(BuildContext context) {
return Row(
children: [
const Icon(Icons.locati... | 1 |
shivakibot/mathematics | 78bd9f4 | test/optimal_binary_search_tree_test.dart | Dart | www.github.com/shivakibot/mathematics/tree/main/test/optimal_binary_search_tree_test.dart | https://raw.githubusercontent.com/shivakibot/mathematics/78bd9f4/test/optimal_binary_search_tree_test.dart | shivakibot/mathematics 78bd9f4 test/optimal_binary_search_tree_test.dart | true | 200 | 1,017 | import 'package:flutter/cupertino.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:mathematics/optimal_binary_search_tree.dart';
void main() {
test('optimalBst test', () {
List<double> keys = [1, 2, 3, 4, 5];
List<double> probabilities = [0.15, 0.1, 0.05, 0.1, 0.2];
Node? root = Op... | 0 |
RakibHossainMorul/helloworld | dfee416 | lib/class/homeClass.dart | Dart | www.github.com/RakibHossainMorul/helloworld/tree/main/lib/class/homeClass.dart | https://raw.githubusercontent.com/RakibHossainMorul/helloworld/dfee416/lib/class/homeClass.dart | RakibHossainMorul/helloworld dfee416 lib/class/homeClass.dart | true | 200 | 284 | import 'package:flutter/material.dart';
class HomeClass extends StatelessWidget {
const HomeClass({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text("This is Home Class Text"),
),
);
}
}
| 4 |
joedrm/jianyue_music_player | 9cf2dfa | app/lib/base/bloc/common/common_bloc.dart | Dart | www.github.com/joedrm/jianyue_music_player/tree/main/app/lib/base/bloc/common/common_bloc.dart | https://raw.githubusercontent.com/joedrm/jianyue_music_player/9cf2dfa/app/lib/base/bloc/common/common_bloc.dart | joedrm/jianyue_music_player 9cf2dfa app/lib/base/bloc/common/common_bloc.dart | true | 200 | 1,624 | import 'dart:async';
import 'package:app/base/bloc/base_bloc.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:injectable/injectable.dart';
import 'package:app/base/bloc/common/common_event.dart';
import 'package:app/base/bloc/common/common_state.dart';
import 'package:shared/shared.dart';
@Inje... | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.