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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
tinkokowin96/flutter_boilerplate | 2754b0a | lib/app/modules/core/widgets/dropdown/searchable_dropdown.dart | Dart | www.github.com/tinkokowin96/flutter_boilerplate/tree/main/lib/app/modules/core/widgets/dropdown/searchable_dropdown.dart | https://raw.githubusercontent.com/tinkokowin96/flutter_boilerplate/2754b0a/lib/app/modules/core/widgets/dropdown/searchable_dropdown.dart | tinkokowin96/flutter_boilerplate 2754b0a lib/app/modules/core/widgets/dropdown/searchable_dropdown.dart | true | 200 | 2,508 | import 'dart:async';
import 'package:exceed_resources_frontend/app/modules/core/utils/enum.dart';
import 'package:exceed_resources_frontend/app/modules/core/widgets/dropdown/dropdown.dart';
import 'package:flutter/material.dart';
class AppSearchableDropdown extends StatefulWidget {
final double width;
final Functi... | 7 |
Neikan/sb7 | f0c3c50 | lib/components/app_divider.dart | Dart | www.github.com/Neikan/sb7/tree/main/lib/components/app_divider.dart | https://raw.githubusercontent.com/Neikan/sb7/f0c3c50/lib/components/app_divider.dart | Neikan/sb7 f0c3c50 lib/components/app_divider.dart | true | 200 | 603 | // Flutter imports:
import 'package:flutter/material.dart';
class AppDivider extends StatelessWidget {
final Color? color;
final double? paddingX, paddingY;
const AppDivider({
super.key,
this.color = Colors.grey,
this.paddingY,
this.paddingX,
});
@override
Widget build(BuildContext contex... | 5 |
AhmedSherif7/algoriza_todo_project | 82d3aea | lib/presentation/widgets/board/task_list_item.dart | Dart | www.github.com/AhmedSherif7/algoriza_todo_project/tree/main/lib/presentation/widgets/board/task_list_item.dart | https://raw.githubusercontent.com/AhmedSherif7/algoriza_todo_project/82d3aea/lib/presentation/widgets/board/task_list_item.dart | AhmedSherif7/algoriza_todo_project 82d3aea lib/presentation/widgets/board/task_list_item.dart | true | 200 | 2,830 | import 'package:algoriza_todo/core/extensions.dart';
import 'package:algoriza_todo/domain/entities/task.dart';
import 'package:algoriza_todo/presentation/managers/task/task_cubit.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
class TaskListItem extends StatelessWidget {... | 2 |
djag07907/pokedex_v1.0.0 | 241fc99 | lib/widgets/pokemon_sound_button.dart | Dart | www.github.com/djag07907/pokedex_v1.0.0/tree/main/lib/widgets/pokemon_sound_button.dart | https://raw.githubusercontent.com/djag07907/pokedex_v1.0.0/241fc99/lib/widgets/pokemon_sound_button.dart | djag07907/pokedex_v1.0.0 241fc99 lib/widgets/pokemon_sound_button.dart | true | 200 | 1,446 | import 'package:flutter/material.dart';
import 'package:pokedex_v1_0_0/models/pokemon_model.dart';
import 'package:pokedex_v1_0_0/resources/constants.dart';
import 'package:pokedex_v1_0_0/resources/themes.dart';
class PokemonSoundButton extends StatelessWidget {
const PokemonSoundButton(
{super.key, required t... | 3 |
AmeerAmjed/Task-Manager-App | b38a29f | lib/ui/views/home_screen/bloc/home_screen_bloc.dart | Dart | www.github.com/AmeerAmjed/Task-Manager-App/tree/main/lib/ui/views/home_screen/bloc/home_screen_bloc.dart | https://raw.githubusercontent.com/AmeerAmjed/Task-Manager-App/b38a29f/lib/ui/views/home_screen/bloc/home_screen_bloc.dart | AmeerAmjed/Task-Manager-App b38a29f lib/ui/views/home_screen/bloc/home_screen_bloc.dart | true | 200 | 4,980 | import 'dart:async';
import 'package:equatable/equatable.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:task_manager/di/get_it.dart';
import 'package:task_manager/domain/model/todo_model.dart';
import 'package:task_manager/domain/model/user_model.dart';
... | 6 |
Steven1331/restaurant-software | b2bee14 | lib/manager/weekly_schedule.dart | Dart | www.github.com/Steven1331/restaurant-software/tree/main/lib/manager/weekly_schedule.dart | https://raw.githubusercontent.com/Steven1331/restaurant-software/b2bee14/lib/manager/weekly_schedule.dart | Steven1331/restaurant-software b2bee14 lib/manager/weekly_schedule.dart | true | 200 | 7,219 | import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'package:restaurantsoftware/date_time_selector.dart';
import 'package:restaurantsoftware/employee/employee.dart';
import 'package:restaurantsoftware/firebase/db.dart';
import 'p... | 1 |
syafiqfadli/flutter_food_ordering_app | 538bd95 | lib/src/features/presentation/widgets/admin/restaurant/restaurant_details_card.dart | Dart | www.github.com/syafiqfadli/flutter_food_ordering_app/tree/main/lib/src/features/presentation/widgets/admin/restaurant/restaurant_details_card.dart | https://raw.githubusercontent.com/syafiqfadli/flutter_food_ordering_app/538bd95/lib/src/features/presentation/widgets/admin/restaurant/restaurant_details_card.dart | syafiqfadli/flutter_food_ordering_app 538bd95 lib/src/features/presentation/widgets/admin/restaurant/restaurant_details_card.dart | true | 200 | 1,972 | import 'package:flutter/material.dart';
import 'package:order_me/src/features/domain/entities/entities.dart';
import 'package:order_me/src/core/utils/utils.dart';
class RestaurantDetailsCard extends StatelessWidget {
final int index;
final RestaurantEntity restaurant;
const RestaurantDetailsCard({
super.key... | 7 |
HighOverseer/Balance-App | 5f8226f | lib/component/ConfirmationDilaog.dart | Dart | www.github.com/HighOverseer/Balance-App/tree/main/lib/component/ConfirmationDilaog.dart | https://raw.githubusercontent.com/HighOverseer/Balance-App/5f8226f/lib/component/ConfirmationDilaog.dart | HighOverseer/Balance-App 5f8226f lib/component/ConfirmationDilaog.dart | true | 200 | 4,267 |
import 'package:first_project/theme/colors.dart';
import 'package:flutter/material.dart';
class ConfirmationDialog extends StatefulWidget {
const ConfirmationDialog(this.text, {required this.onItemPressed, this.backgroundColor = Colors.white, this.textColor = colorsNavy, this.radius = 12, this.isTextBold = true,... | 4 |
AbhijithNellikkat/RuDo-Wealth-Assignment | afb4d3b | lib/application/bussiness_logic/auth/auth_bloc.dart | Dart | www.github.com/AbhijithNellikkat/RuDo-Wealth-Assignment/tree/main/lib/application/bussiness_logic/auth/auth_bloc.dart | https://raw.githubusercontent.com/AbhijithNellikkat/RuDo-Wealth-Assignment/afb4d3b/lib/application/bussiness_logic/auth/auth_bloc.dart | AbhijithNellikkat/RuDo-Wealth-Assignment afb4d3b lib/application/bussiness_logic/auth/auth_bloc.dart | true | 200 | 3,540 | import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter/material.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:rudo_wealth_test/domain/models/auth/auth_model.dart';
import 'package:rudo_wealth_test/domain/repositories/auth_repo.dart';
part 'auth_event.dart';
part ... | 5 |
TrushaDodiya74/Flutter | e5fb7d4 | sy_flutter_project2/lib/main.dart | Dart | www.github.com/TrushaDodiya74/Flutter/tree/main/sy_flutter_project2/lib/main.dart | https://raw.githubusercontent.com/TrushaDodiya74/Flutter/e5fb7d4/sy_flutter_project2/lib/main.dart | TrushaDodiya74/Flutter e5fb7d4 sy_flutter_project2/lib/main.dart | true | 200 | 748 | import 'package:flutter/material.dart';
void main()
{
runApp(FlutterApp());
}
class FlutterApp extends StatelessWidget
{
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "MyFlutterApp",
debugShowCheckedModeBanner: false,
theme:ThemeData(
primarySwatch: Colo... | 0 |
Fitha-Parvin/firebase | 8aa1344 | lib/google/registerGoogle.dart | Dart | www.github.com/Fitha-Parvin/firebase/tree/main/lib/google/registerGoogle.dart | https://raw.githubusercontent.com/Fitha-Parvin/firebase/8aa1344/lib/google/registerGoogle.dart | Fitha-Parvin/firebase 8aa1344 lib/google/registerGoogle.dart | true | 200 | 3,536 |
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:get/get_core/src/get_main.dart';
import 'firebase.dart';
import 'logingoogle.dart';
// void main(){
// runApp(MaterialApp(home:RegisterFirebase() ,));
// }
class RegisterFirebase extends StatelessWidget {
RegisterFir... | 2 |
Suheb786/crossRepoPushTest | 7ceed80 | lib/feature/postpaid_bills/new_bill/new_bills_page.dart | Dart | www.github.com/Suheb786/crossRepoPushTest/tree/main/lib/feature/postpaid_bills/new_bill/new_bills_page.dart | https://raw.githubusercontent.com/Suheb786/crossRepoPushTest/7ceed80/lib/feature/postpaid_bills/new_bill/new_bills_page.dart | Suheb786/crossRepoPushTest 7ceed80 lib/feature/postpaid_bills/new_bill/new_bills_page.dart | true | 200 | 1,018 | import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:neo_bank/base/base_page.dart';
import 'package:neo_bank/di/payment/payment_modules.dart';
import 'new_bills_page_view.dart';
import 'new_bills_page_view_model.dart';
class NewBillsPage extends BasePage<New... | 3 |
nahlanabil84/pet_shop | f655d18 | lib/common_widgets/bottom_navigation_bar.dart | Dart | www.github.com/nahlanabil84/pet_shop/tree/main/lib/common_widgets/bottom_navigation_bar.dart | https://raw.githubusercontent.com/nahlanabil84/pet_shop/f655d18/lib/common_widgets/bottom_navigation_bar.dart | nahlanabil84/pet_shop f655d18 lib/common_widgets/bottom_navigation_bar.dart | true | 200 | 1,540 | import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CustomBottomNavigationBar extends StatefulWidget {
const CustomBottomNavigationBar({super.key});
@override
_CustomBottomNavigationBar createState () => _CustomBottomNavigationBar();
}
class _CustomBottomNavigationBar e... | 1 |
Voodstr/downtogame | 943058a | lib/downtogame.dart | Dart | www.github.com/Voodstr/downtogame/tree/main/lib/downtogame.dart | https://raw.githubusercontent.com/Voodstr/downtogame/943058a/lib/downtogame.dart | Voodstr/downtogame 943058a lib/downtogame.dart | true | 200 | 2,511 |
import 'package:downtogame/Components/components.dart';
import 'package:flame/components.dart';
import 'package:flame/events.dart';
import 'package:flame/game.dart';
import 'package:flutter/material.dart';
import 'assets.dart';
class DownToGame extends FlameGame
with HasKeyboardHandlerComponents, HasCollisionDete... | 6 |
Oybekjon2090/HiveApp | 1ed1861 | lib/view/home_page.dart | Dart | www.github.com/Oybekjon2090/HiveApp/tree/main/lib/view/home_page.dart | https://raw.githubusercontent.com/Oybekjon2090/HiveApp/1ed1861/lib/view/home_page.dart | Oybekjon2090/HiveApp 1ed1861 lib/view/home_page.dart | true | 200 | 6,269 | import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:hive/hive.dart';
import 'package:hive_app/view/universe_view.dart';
import 'package:hive_flutter/hive_flutter.dart';
import 'package:http/http.dart' as http;
import '../Model/universe_model.dart';
class HomePage extends StatefulWidget {
... | 4 |
nasiri-arsalan/budget | 3817c77 | lib/di/service_locator.dart | Dart | www.github.com/nasiri-arsalan/budget/tree/main/lib/di/service_locator.dart | https://raw.githubusercontent.com/nasiri-arsalan/budget/3817c77/lib/di/service_locator.dart | nasiri-arsalan/budget 3817c77 lib/di/service_locator.dart | true | 200 | 991 | import 'package:budget/data/mapper/budget/budget_mapper.dart';
import 'package:budget/data/network/api/budget_api.dart';
import 'package:budget/data/network/rest_api.dart';
import 'package:budget/data/repositories/budget_repository_impl.dart';
import 'package:budget/domain/repositories/budget_repository.dart';
import '... | 5 |
riskikautjil104/Protracker_app | 4a1416f | lib/app/widgets/card_nama_task.dart | Dart | www.github.com/riskikautjil104/Protracker_app/tree/main/lib/app/widgets/card_nama_task.dart | https://raw.githubusercontent.com/riskikautjil104/Protracker_app/4a1416f/lib/app/widgets/card_nama_task.dart | riskikautjil104/Protracker_app 4a1416f lib/app/widgets/card_nama_task.dart | true | 200 | 2,446 | import 'package:flutter/material.dart';
// import 'package:get/get.dart';
// import 'package:productivity_tracker_app/app/modules/project/controllers/project_controller.dart';
class CardTask extends StatelessWidget {
final String namaProject;
final String toDos;
final String date;
final String progress;
fina... | 3 |
excelitai-tusher/fetch_data_api | 497fe19 | lib/screen/sub_category.dart | Dart | www.github.com/excelitai-tusher/fetch_data_api/tree/main/lib/screen/sub_category.dart | https://raw.githubusercontent.com/excelitai-tusher/fetch_data_api/497fe19/lib/screen/sub_category.dart | excelitai-tusher/fetch_data_api 497fe19 lib/screen/sub_category.dart | true | 200 | 351 | import 'package:flutter/material.dart';
class SUb_Category extends StatefulWidget {
const SUb_Category({Key? key}) : super(key: key);
@override
State<SUb_Category> createState() => _SUb_CategoryState();
}
class _SUb_CategoryState extends State<SUb_Category> {
@override
Widget build(BuildContext context) {
... | 0 |
somosaleteo/detectdevice | 4e44153 | lib/models/device_model.dart | Dart | www.github.com/somosaleteo/detectdevice/tree/main/lib/models/device_model.dart | https://raw.githubusercontent.com/somosaleteo/detectdevice/4e44153/lib/models/device_model.dart | somosaleteo/detectdevice 4e44153 lib/models/device_model.dart | true | 200 | 1,170 | import '../interfaces/interfaces.dart';
class DeviceModel extends Model {
final Map<String, dynamic> deviceInfo;
final bool isModified;
final String nameOs;
final String deviceSerial;
DeviceModel({
required this.deviceInfo,
this.isModified = false,
required this.nameOs,
required this.deviceS... | 2 |
AkiraSaito-png/Token | 8a9f960 | mobile/sebsa/lib/pages/validar_page.dart | Dart | www.github.com/AkiraSaito-png/Token/tree/main/mobile/sebsa/lib/pages/validar_page.dart | https://raw.githubusercontent.com/AkiraSaito-png/Token/8a9f960/mobile/sebsa/lib/pages/validar_page.dart | AkiraSaito-png/Token 8a9f960 mobile/sebsa/lib/pages/validar_page.dart | true | 200 | 1,789 | import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_barcode_scanner/flutter_barcode_scanner.dart';
import 'package:postgres/postgres.dart';
import 'package:sebsa/pages/signUp_page.dart';
class Validar_page extends StatefulWidget {
@override
_Validar_page createSt... | 6 |
Thaniya05/MySpace | 3675fbd | app1/lib/src/widget/mycard.dart | Dart | www.github.com/Thaniya05/MySpace/tree/main/app1/lib/src/widget/mycard.dart | https://raw.githubusercontent.com/Thaniya05/MySpace/3675fbd/app1/lib/src/widget/mycard.dart | Thaniya05/MySpace 3675fbd app1/lib/src/widget/mycard.dart | true | 200 | 7,203 | import 'package:auto_size_text/auto_size_text.dart';
import 'package:flip_card/flip_card.dart';
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:get/get.dart';
import 'package:google_fonts/google_fonts.dart';
double icon_card_size = 24.0;
class M... | 1 |
webdsa/internal-information-management-mobile | 07888ff | lib/screens/search_screen.dart | Dart | www.github.com/webdsa/internal-information-management-mobile/tree/main/lib/screens/search_screen.dart | https://raw.githubusercontent.com/webdsa/internal-information-management-mobile/07888ff/lib/screens/search_screen.dart | webdsa/internal-information-management-mobile 07888ff lib/screens/search_screen.dart | true | 200 | 6,361 | import 'dart:async';
import 'package:flutter/material.dart';
import 'package:internalinformationmanagement/screens/content_screen.dart';
import 'package:internalinformationmanagement/service/APIService.dart';
import 'package:internalinformationmanagement/theme/theme.dart';
import 'package:internalinformationmanagement... | 7 |
Shirish-Jonchhen/hardwarepasal-mobile | ca3b5bc | lib/src/feature/brand_detail_screen/data/repository/brand_details_repository_impl.dart | Dart | www.github.com/Shirish-Jonchhen/hardwarepasal-mobile/tree/main/lib/src/feature/brand_detail_screen/data/repository/brand_details_repository_impl.dart | https://raw.githubusercontent.com/Shirish-Jonchhen/hardwarepasal-mobile/ca3b5bc/lib/src/feature/brand_detail_screen/data/repository/brand_details_repository_impl.dart | Shirish-Jonchhen/hardwarepasal-mobile ca3b5bc lib/src/feature/brand_detail_screen/data/repository/brand_details_repository_impl.dart | true | 200 | 1,497 | import 'package:dartz/dartz.dart';
import 'package:injectable/injectable.dart';
import '../../../../core/api_response/api_response.dart';
import '../../../../core/errors/app_error.dart';
import '../../../../core/errors/app_exceptions.dart';
import '../../../../core/network/network_info.dart';
import '../../domain/repo... | 3 |
LePhuocLoi4850/luan-van | 4b9db91 | jobapp/lib/models/wards_data.dart | Dart | www.github.com/LePhuocLoi4850/luan-van/tree/main/jobapp/lib/models/wards_data.dart | https://raw.githubusercontent.com/LePhuocLoi4850/luan-van/4b9db91/jobapp/lib/models/wards_data.dart | LePhuocLoi4850/luan-van 4b9db91 jobapp/lib/models/wards_data.dart | true | 200 | 16,369 | const Map<String, Map<String, List<String>>> wardsData = {
'Hà Nội': {
'Quận Ba Đình': [
'Phường Phúc Xá',
'Phường Trúc Bạch',
'Phường Kim Mã',
'Phường Giảng Võ',
'Phường Thành Công',
'Phường Vĩnh Phúc',
'Phường Cống Vị',
'Phường Liễu Giai',
'Phường Nguyễn Tru... | 4 |
volkanyurusen/project1_flutter | 946a5e7 | lib/screens/message/local_widgets/conversation_app_bar.dart | Dart | www.github.com/volkanyurusen/project1_flutter/tree/main/lib/screens/message/local_widgets/conversation_app_bar.dart | https://raw.githubusercontent.com/volkanyurusen/project1_flutter/946a5e7/lib/screens/message/local_widgets/conversation_app_bar.dart | volkanyurusen/project1_flutter 946a5e7 lib/screens/message/local_widgets/conversation_app_bar.dart | true | 200 | 2,461 | import 'package:flutter/material.dart';
import 'package:my_project/constants/constants.dart';
import 'package:my_project/widgets/widget.dart';
class ConversationAppBar extends StatelessWidget
implements PreferredSizeWidget {
final AppColors _appColors = AppColors();
final ImageProvider<Object> imageWidg... | 5 |
jorgealtamar/green_project | 8b6c1f6 | lib/screens/home/components/container_fecha.dart | Dart | www.github.com/jorgealtamar/green_project/tree/main/lib/screens/home/components/container_fecha.dart | https://raw.githubusercontent.com/jorgealtamar/green_project/8b6c1f6/lib/screens/home/components/container_fecha.dart | jorgealtamar/green_project 8b6c1f6 lib/screens/home/components/container_fecha.dart | true | 200 | 1,090 | import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:intl/date_symbol_data_local.dart';
import 'package:intl/intl.dart';
class ContainerFecha extends StatelessWidget {
const ContainerFecha({
super.key,
});
@override
Widget build(BuildContext context) {
... | 2 |
tatsukikane/flutter_wavysmap_native | ff8d7c8 | Application/lib/controllers/upload_video_controller.dart | Dart | www.github.com/tatsukikane/flutter_wavysmap_native/tree/main/Application/lib/controllers/upload_video_controller.dart | https://raw.githubusercontent.com/tatsukikane/flutter_wavysmap_native/ff8d7c8/Application/lib/controllers/upload_video_controller.dart | tatsukikane/flutter_wavysmap_native ff8d7c8 Application/lib/controllers/upload_video_controller.dart | true | 200 | 5,302 | import 'dart:convert';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_storage/firebase_storage.dart';
import 'package:flutter_wavysmap_native/main.dart';
import 'package:flutter_wavysmap_native/map/helpers/directions_handler.dart';
import 'package:flutter_wavysmap_native/map/ui/splash.... | 1 |
pratyushvaibhaw/misfit_assignment | da9fe8d | lib/widgets/custom_badge_dialog.dart | Dart | www.github.com/pratyushvaibhaw/misfit_assignment/tree/main/lib/widgets/custom_badge_dialog.dart | https://raw.githubusercontent.com/pratyushvaibhaw/misfit_assignment/da9fe8d/lib/widgets/custom_badge_dialog.dart | pratyushvaibhaw/misfit_assignment da9fe8d lib/widgets/custom_badge_dialog.dart | true | 200 | 2,541 | import 'package:flutter/material.dart';
import 'package:misfit_assignment/constants/colors.dart';
import 'package:misfit_assignment/utils/utils.dart';
import 'package:misfit_assignment/widgets/divider_and_text.dart';
import 'package:velocity_x/velocity_x.dart';
class CustomBadgeDialog extends StatelessWidget {
final... | 0 |
Subin-4488/credstream | 6c2e4a6 | lib/domain/user/user_api.dart | Dart | www.github.com/Subin-4488/credstream/tree/main/lib/domain/user/user_api.dart | https://raw.githubusercontent.com/Subin-4488/credstream/6c2e4a6/lib/domain/user/user_api.dart | Subin-4488/credstream 6c2e4a6 lib/domain/user/user_api.dart | true | 200 | 1,177 | import 'dart:convert';
import 'package:credstream/core/values.dart';
import 'package:credstream/models/credential.dart';
import 'package:credstream/models/user.dart';
import 'package:http/http.dart' as http;
class UserApi {
static Future<bool> signupUser(User user) async {
try {
http.Response response = a... | 7 |
misterfourtytwo/forge2d_codelab | 1a40899 | lib/misc/audio_test_app/audio_controls_app.dart | Dart | www.github.com/misterfourtytwo/forge2d_codelab/tree/main/lib/misc/audio_test_app/audio_controls_app.dart | https://raw.githubusercontent.com/misterfourtytwo/forge2d_codelab/1a40899/lib/misc/audio_test_app/audio_controls_app.dart | misterfourtytwo/forge2d_codelab 1a40899 lib/misc/audio_test_app/audio_controls_app.dart | true | 200 | 692 | import 'package:flutter/material.dart';
import 'package:forge2d_game/services/audio/audio_controller.dart';
import 'audio_provider.dart';
import 'page/audio_controls_page.dart';
class AudioControlsApp extends StatelessWidget {
const AudioControlsApp({
super.key,
required this.audio,
});
final AudioCont... | 3 |
postmoderngulp/medic | f1eef55 | lib/Navigation/NavigatorClass.dart | Dart | www.github.com/postmoderngulp/medic/tree/main/lib/Navigation/NavigatorClass.dart | https://raw.githubusercontent.com/postmoderngulp/medic/f1eef55/lib/Navigation/NavigatorClass.dart | postmoderngulp/medic f1eef55 lib/Navigation/NavigatorClass.dart | true | 200 | 2,434 | import 'package:flutter/cupertino.dart';
import '../UI/PermanentUi/bottom_navigation.dart';
import '../UI/Authorized/create_card.dart';
import '../UI/Authorized/input_password.dart';
import '../main.dart';
import '../UI/Authorized/onboard.dart';
import '../UI/UserUi/oneOfferScreen.dart';
import '../UI/UserUi/patients_o... | 4 |
ruvima/dream_diary_app | 2556eac | lib/features/home/presentation/screens/details_screen.dart | Dart | www.github.com/ruvima/dream_diary_app/tree/main/lib/features/home/presentation/screens/details_screen.dart | https://raw.githubusercontent.com/ruvima/dream_diary_app/2556eac/lib/features/home/presentation/screens/details_screen.dart | ruvima/dream_diary_app 2556eac lib/features/home/presentation/screens/details_screen.dart | true | 200 | 8,870 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_modular/flutter_modular.dart'
hide ModularWatchExtension;
import '../../../../core/core.dart';
import '../../../../core/shared/models/form_args.dart';
import '../../domain/domain.dart';
import '../blocs... | 2 |
AaronMarcusDev/BFC | 79e24b1 | lib/interpreter.dart | Dart | www.github.com/AaronMarcusDev/BFC/tree/main/lib/interpreter.dart | https://raw.githubusercontent.com/AaronMarcusDev/BFC/79e24b1/lib/interpreter.dart | AaronMarcusDev/BFC 79e24b1 lib/interpreter.dart | true | 200 | 1,746 | import 'package:bfc/command.dart';
import 'dart:io';
class Interpreter {
void _interpret(List<Command> tokens) {
List<int> data = List.filled(30000, 0); // Simulated memory
List<int> loopList = [];
int nestedLoops = 0; // Keeps track of loops-in-loops
bool inLoop = false;
int pos = 0; // Simulates pointer... | 6 |
zuhrrl/zul_story_app | 1b4b4bf | lib/routes/app_router_delegate.dart | Dart | www.github.com/zuhrrl/zul_story_app/tree/main/lib/routes/app_router_delegate.dart | https://raw.githubusercontent.com/zuhrrl/zul_story_app/1b4b4bf/lib/routes/app_router_delegate.dart | zuhrrl/zul_story_app 1b4b4bf lib/routes/app_router_delegate.dart | true | 200 | 3,965 | import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:zul_story_app/repository/auth_repository.dart';
import 'package:zul_story_app/screen/authentication/login_screen.dart';
import 'package:zul_story_app/screen/authentication/register_screen.dart';
import 'package:zul_story_app/... | 1 |
Mohammedayyad0629/GaamTime-Ui-Flutter | 90b52e2 | lib/static/imges.dart | Dart | www.github.com/Mohammedayyad0629/GaamTime-Ui-Flutter/tree/main/lib/static/imges.dart | https://raw.githubusercontent.com/Mohammedayyad0629/GaamTime-Ui-Flutter/90b52e2/lib/static/imges.dart | Mohammedayyad0629/GaamTime-Ui-Flutter 90b52e2 lib/static/imges.dart | true | 200 | 991 | const kAseets = 'assets/images';
const kOnboarding1 = '$kAseets/onboarding1.png';
const kOnboarding2 = '$kAseets/onboarding2.png';
const kOnboarding3 = '$kAseets/onboarding3.png';
const kLogInimges = '$kAseets/login.png';
const kSignUpimges = '$kAseets/signup.png';
const kGoogle = '$kAseets/google.svg';
const kFacebook... | 0 |
Davilaro/tv-Login | a598be2 | lib/main.dart | Dart | www.github.com/Davilaro/tv-Login/tree/main/lib/main.dart | https://raw.githubusercontent.com/Davilaro/tv-Login/a598be2/lib/main.dart | Davilaro/tv-Login a598be2 lib/main.dart | true | 200 | 3,103 | //import 'package:connectivity_plus/connectivity_plus.dart';
import 'package:connectivity_plus/connectivity_plus.dart';
import 'package:flutter/material.dart';
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:http/http.dart';
import 'package:provider/provider.dart';
import 'app/data... | 7 |
EJBonete/flutter_chat | 4286513 | lib/routes/routes.dart | Dart | www.github.com/EJBonete/flutter_chat/tree/main/lib/routes/routes.dart | https://raw.githubusercontent.com/EJBonete/flutter_chat/4286513/lib/routes/routes.dart | EJBonete/flutter_chat 4286513 lib/routes/routes.dart | true | 200 | 354 | import 'package:chat/screen/screen.dart';
import 'package:flutter/material.dart';
final Map<String, Widget Function(BuildContext)> appRoutes = {
// 'users': (_) => const UsersScreen(),
'loading': (_) => const LoadingScreen(),
'Login': (_) => const LoginScreen(),
'register': (_) => const RegisterScreen(),
'ch... | 3 |
MohamedKhaled8/Ecommerce-TeknoSoft | 063aa06 | lib/feature/home/controller/search_controller.dart | Dart | www.github.com/MohamedKhaled8/Ecommerce-TeknoSoft/tree/main/lib/feature/home/controller/search_controller.dart | https://raw.githubusercontent.com/MohamedKhaled8/Ecommerce-TeknoSoft/063aa06/lib/feature/home/controller/search_controller.dart | MohamedKhaled8/Ecommerce-TeknoSoft 063aa06 lib/feature/home/controller/search_controller.dart | true | 200 | 1,575 | import 'package:get/get.dart';
import 'package:flutter/material.dart';
import 'package:get_storage/get_storage.dart';
import 'package:ecommerce/feature/home/data/model/product_model.dart';
import 'package:ecommerce/feature/home/controller/home_controller.dart';
abstract class SearchController extends GetxController {}... | 2 |
chathurangakup/resturantPublicRepoFlutter | 98f7372 | lib/screens/splash/splashscreen.dart | Dart | www.github.com/chathurangakup/resturantPublicRepoFlutter/tree/main/lib/screens/splash/splashscreen.dart | https://raw.githubusercontent.com/chathurangakup/resturantPublicRepoFlutter/98f7372/lib/screens/splash/splashscreen.dart | chathurangakup/resturantPublicRepoFlutter 98f7372 lib/screens/splash/splashscreen.dart | true | 200 | 10,372 |
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter_easyloading/flutter_easyloading.dart';
import 'package:resturantapp/config/size_config.dart';
import 'package:resturantapp/screens/login/loginscreen.dart';
import 'package:resturantapp/screens/signup/signupscreen.dart';
import 'package:... | 6 |
e-meyer/zelen-bank | ccf85d4 | test/authentication/domain/entities/user_entity_test.dart | Dart | www.github.com/e-meyer/zelen-bank/tree/main/test/authentication/domain/entities/user_entity_test.dart | https://raw.githubusercontent.com/e-meyer/zelen-bank/ccf85d4/test/authentication/domain/entities/user_entity_test.dart | e-meyer/zelen-bank ccf85d4 test/authentication/domain/entities/user_entity_test.dart | true | 200 | 454 | import 'package:flutter_test/flutter_test.dart';
import 'package:zelenbank/authentication/domain/entities/user_entity.dart';
void main() {
final UserEntity tUserEntity = UserEntity(
uid: 'uid',
name: 'name',
profilePhotoUrl: 'profilePhotoUrl',
);
test('Should be a user entity and field dat... | 1 |
csells/vertex_ai_planner | 4b1d3d7 | lib/main.dart | Dart | www.github.com/csells/vertex_ai_planner/tree/main/lib/main.dart | https://raw.githubusercontent.com/csells/vertex_ai_planner/4b1d3d7/lib/main.dart | csells/vertex_ai_planner 4b1d3d7 lib/main.dart | true | 200 | 1,536 | import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'firebase_options.dart';
import 'split_or_tabs.dart';
import 'views/planner_view.dart';
import 'views/plans_view.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(opti... | 4 |
Access2Christian/Music-streaming-Application | 82a66ec | frontend/lib/screens/settings_screen.dart | Dart | www.github.com/Access2Christian/Music-streaming-Application/tree/main/frontend/lib/screens/settings_screen.dart | https://raw.githubusercontent.com/Access2Christian/Music-streaming-Application/82a66ec/frontend/lib/screens/settings_screen.dart | Access2Christian/Music-streaming-Application 82a66ec frontend/lib/screens/settings_screen.dart | true | 200 | 1,330 | import 'package:flutter/material.dart';
class SettingsScreen extends StatelessWidget {
const SettingsScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Settings"),
backgroundColor: const Color(0xFF4A9... | 0 |
Abvvs/yes_no_app | b54b6d8 | lib/presentation/screens/chat/chat_screen.dart | Dart | www.github.com/Abvvs/yes_no_app/tree/main/lib/presentation/screens/chat/chat_screen.dart | https://raw.githubusercontent.com/Abvvs/yes_no_app/b54b6d8/lib/presentation/screens/chat/chat_screen.dart | Abvvs/yes_no_app b54b6d8 lib/presentation/screens/chat/chat_screen.dart | true | 200 | 2,006 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:yes_no_app/domain/entities/message.dart';
import 'package:yes_no_app/presentation/providers/chat_provider.dart';
import 'package:yes_no_app/presentation/widgets/chat/my_message_bubble.dart';
import 'package:yes_no_app/prese... | 3 |
heating-furnaces-team/heating-furnaces | d1ce6f6 | frontend/lib/app/shared/dicts/furnace_status_dic.dart | Dart | www.github.com/heating-furnaces-team/heating-furnaces/tree/main/frontend/lib/app/shared/dicts/furnace_status_dic.dart | https://raw.githubusercontent.com/heating-furnaces-team/heating-furnaces/d1ce6f6/frontend/lib/app/shared/dicts/furnace_status_dic.dart | heating-furnaces-team/heating-furnaces d1ce6f6 frontend/lib/app/shared/dicts/furnace_status_dic.dart | true | 200 | 456 | import 'package:flutter/material.dart';
import 'package:happy_furnaces/app/shared/models/furnace.dart';
Map<FurnaceStatus, Map<String, dynamic>> furnaceStatusDic = {
FurnaceStatus.ok: {
"color": Colors.green,
},
FurnaceStatus.warning: {
"color": Colors.orange,
},
FurnaceStatus.danger: {
"color": ... | 2 |
LucasWPL/delivery_app | a7f7385 | lib/helpers/toast_helper.dart | Dart | www.github.com/LucasWPL/delivery_app/tree/main/lib/helpers/toast_helper.dart | https://raw.githubusercontent.com/LucasWPL/delivery_app/a7f7385/lib/helpers/toast_helper.dart | LucasWPL/delivery_app a7f7385 lib/helpers/toast_helper.dart | true | 200 | 1,537 | import 'package:delivery_app/exports.dart';
class ToastHelper {
static success(BuildContext context, String message) {
toastification.show(
context: context,
type: ToastificationType.success,
style: ToastificationStyle.flat,
autoCloseDuration: const Duration(seconds: 3),
// title: c... | 1 |
DhanushiRajapaksha/FoodRecipesApp | 0252fb1 | lib/user_review_adding.dart | Dart | www.github.com/DhanushiRajapaksha/FoodRecipesApp/tree/main/lib/user_review_adding.dart | https://raw.githubusercontent.com/DhanushiRajapaksha/FoodRecipesApp/0252fb1/lib/user_review_adding.dart | DhanushiRajapaksha/FoodRecipesApp 0252fb1 lib/user_review_adding.dart | true | 200 | 1,844 | import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_database/firebase_database.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
runApp(const SignReview());
}
class SignReview extends StatefulWidg... | 7 |
Hana250903/stamping-robot-mobile | e718682 | fitness/lib/models/user_model.dart | Dart | www.github.com/Hana250903/stamping-robot-mobile/tree/main/fitness/lib/models/user_model.dart | https://raw.githubusercontent.com/Hana250903/stamping-robot-mobile/e718682/fitness/lib/models/user_model.dart | Hana250903/stamping-robot-mobile e718682 fitness/lib/models/user_model.dart | true | 200 | 415 | class UserModel {
final String id;
final String accessToken;
final String refreshToken;
UserModel({
required this.id,
required this.accessToken,
required this.refreshToken,
});
factory UserModel.fromJson(Map<String, dynamic> json) {
return UserModel(
id: json['id'] ?? '',
acces... | 4 |
am-i-abdullah/movies | 7d4983c | lib/screens/main_screen.dart | Dart | www.github.com/am-i-abdullah/movies/tree/main/lib/screens/main_screen.dart | https://raw.githubusercontent.com/am-i-abdullah/movies/7d4983c/lib/screens/main_screen.dart | am-i-abdullah/movies 7d4983c lib/screens/main_screen.dart | true | 200 | 2,514 | import 'package:flutter/material.dart';
import 'package:movies/screens/dashboard_screen.dart';
import 'package:movies/screens/media_library_screen.dart';
import 'package:movies/screens/more_screen.dart';
import 'package:movies/screens/watch_screen.dart';
class MainScreen extends StatefulWidget {
const MainScreen({su... | 3 |
huy2992002/flutter_training_huy_nguyen | f803497 | flutter_advance_examples/lib/change_color/change_color_page/change_color_page.dart | Dart | www.github.com/huy2992002/flutter_training_huy_nguyen/tree/main/flutter_advance_examples/lib/change_color/change_color_page/change_color_page.dart | https://raw.githubusercontent.com/huy2992002/flutter_training_huy_nguyen/f803497/flutter_advance_examples/lib/change_color/change_color_page/change_color_page.dart | huy2992002/flutter_training_huy_nguyen f803497 flutter_advance_examples/lib/change_color/change_color_page/change_color_page.dart | true | 200 | 1,903 | import 'package:flutter/material.dart';
import 'package:flutter_advance_examples/change_color/change_color_bloc/change_color_bloc.dart';
import 'package:flutter_advance_examples/change_color/change_color_event/change_color_event.dart';
import 'package:flutter_advance_examples/counter/counter_bloc/counter_bloc.dart';
im... | 2 |
dhekaag/MilkyMo-app-flutter | 23ff9f1 | lib/app/constant/mytext_field.dart | Dart | www.github.com/dhekaag/MilkyMo-app-flutter/tree/main/lib/app/constant/mytext_field.dart | https://raw.githubusercontent.com/dhekaag/MilkyMo-app-flutter/23ff9f1/lib/app/constant/mytext_field.dart | dhekaag/MilkyMo-app-flutter 23ff9f1 lib/app/constant/mytext_field.dart | true | 200 | 1,985 | import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
class MyTextField extends StatelessWidget {
final TextStyle? style;
final FocusNode? focusNode;
final TextEditingController? controller;
final String? hintText;
final bool? obscureText;
final bool? isMultiline;
final VoidCall... | 0 |
ZiadAssem/carpool | f38cc3f | lib/reusable_widget.dart | Dart | www.github.com/ZiadAssem/carpool/tree/main/lib/reusable_widget.dart | https://raw.githubusercontent.com/ZiadAssem/carpool/f38cc3f/lib/reusable_widget.dart | ZiadAssem/carpool f38cc3f lib/reusable_widget.dart | true | 200 | 2,521 | // ignore_for_file: prefer_interpolation_to_compose_strings, non_constant_identifier_names
import 'package:carousel_slider/carousel_slider.dart';
import 'package:flutter/material.dart';
//text form field
Widget reusableTextField(String text, IconData icon, bool isPasswordType,
TextEditingController controller,
... | 6 |
LeonardoMaito/escribo-second-challenge | 5bb18f9 | lib/data/local/book_database_repository.dart | Dart | www.github.com/LeonardoMaito/escribo-second-challenge/tree/main/lib/data/local/book_database_repository.dart | https://raw.githubusercontent.com/LeonardoMaito/escribo-second-challenge/5bb18f9/lib/data/local/book_database_repository.dart | LeonardoMaito/escribo-second-challenge 5bb18f9 lib/data/local/book_database_repository.dart | true | 200 | 1,432 |
import 'package:sqflite/sqflite.dart';
import 'book_database.dart';
class BookDatabaseRepository {
final BookDatabase _bookDatabase = BookDatabase.instance;
Future<Map<int, bool>> getFavoriteStatuses() async {
final db = await _bookDatabase.database;
final result = await db.query('Books', columns: ['id',... | 5 |
intemoralnamedev/espescript | 918cc98 | lib/runtime/environment/setup/classes.dart | Dart | www.github.com/intemoralnamedev/espescript/tree/main/lib/runtime/environment/setup/classes.dart | https://raw.githubusercontent.com/intemoralnamedev/espescript/918cc98/lib/runtime/environment/setup/classes.dart | intemoralnamedev/espescript 918cc98 lib/runtime/environment/setup/classes.dart | true | 200 | 2,301 | import 'package:espescript/frontend/ast.dart';
import 'package:espescript/runtime/environment/environment.dart';
import 'package:espescript/runtime/values/es_class.dart';
import 'package:espescript/runtime/values/es_function.dart';
import 'package:espescript/runtime/values/values.dart';
import 'package:espescript/utils... | 7 |
hkatoze/mathilde-AI-assistant | c405ef6 | lib/views/components/buttonWithIcon.dart | Dart | www.github.com/hkatoze/mathilde-AI-assistant/tree/main/lib/views/components/buttonWithIcon.dart | https://raw.githubusercontent.com/hkatoze/mathilde-AI-assistant/c405ef6/lib/views/components/buttonWithIcon.dart | hkatoze/mathilde-AI-assistant c405ef6 lib/views/components/buttonWithIcon.dart | true | 200 | 1,296 | import 'package:flutter/material.dart';
class ButtonWithIcon extends StatelessWidget {
const ButtonWithIcon(
{super.key,
required this.icon,
required this.title,
required this.bgColor});
final String title;
final IconData icon;
final Color bgColor;
@override
Widget build(BuildConte... | 1 |
ayoline/shop-app | bd395de | lib/widgets/products_grid.dart | Dart | www.github.com/ayoline/shop-app/tree/main/lib/widgets/products_grid.dart | https://raw.githubusercontent.com/ayoline/shop-app/bd395de/lib/widgets/products_grid.dart | ayoline/shop-app bd395de lib/widgets/products_grid.dart | true | 200 | 1,209 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../providers/products.dart';
import './product_item.dart';
class ProductsGrid extends StatelessWidget {
final bool showFavs;
const ProductsGrid(this.showFavs, {Key? key}) : super(key: key);
@override
Widget build(BuildC... | 4 |
mixin27/sumeer | a676418 | lib/utils/shared_prefs.dart | Dart | www.github.com/mixin27/sumeer/tree/main/lib/utils/shared_prefs.dart | https://raw.githubusercontent.com/mixin27/sumeer/a676418/lib/utils/shared_prefs.dart | mixin27/sumeer a676418 lib/utils/shared_prefs.dart | true | 200 | 3,930 | import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:sumeer/utils/utils.dart';
late SharedPreferences sharedPreferences;
Future<void> initializePrefs() async {
sharedPreferences = await SharedPreferences.getInstance();
deb... | 3 |
Nirc22/AppSaludable | 3ad8e0f | lib/pages/loading.dart | Dart | www.github.com/Nirc22/AppSaludable/tree/main/lib/pages/loading.dart | https://raw.githubusercontent.com/Nirc22/AppSaludable/3ad8e0f/lib/pages/loading.dart | Nirc22/AppSaludable 3ad8e0f lib/pages/loading.dart | true | 200 | 1,535 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:healthy_app/pages/login.dart';
import 'package:healthy_app/pages/tabs_page.dart';
import 'package:healthy_app/services/auth_services.dart';
class LoadingPage extends StatelessWidget {
const LoadingPage({Key? key}) : su... | 6 |
nguyensydong2004/lap-trinh-ung-dung-di-dong | dfd90c5 | lib/main_screen.dart | Dart | www.github.com/nguyensydong2004/lap-trinh-ung-dung-di-dong/tree/main/lib/main_screen.dart | https://raw.githubusercontent.com/nguyensydong2004/lap-trinh-ung-dung-di-dong/dfd90c5/lib/main_screen.dart | nguyensydong2004/lap-trinh-ung-dung-di-dong dfd90c5 lib/main_screen.dart | true | 200 | 2,670 | import 'package:app_education/bloc/navigation/navigation_bloc.dart';
import 'package:app_education/bloc/navigation/navigation_event.dart';
import 'package:app_education/bloc/navigation/navigation_state.dart';
import 'package:app_education/core/theme/app_colors.dart';
import 'package:app_education/views/course/course_li... | 0 |
shayansaeed123/todo | 2c7dd22 | lib/screens/home_screen.dart | Dart | www.github.com/shayansaeed123/todo/tree/main/lib/screens/home_screen.dart | https://raw.githubusercontent.com/shayansaeed123/todo/2c7dd22/lib/screens/home_screen.dart | shayansaeed123/todo 2c7dd22 lib/screens/home_screen.dart | true | 200 | 4,850 | import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:todo/auth/auth_screen.dart';
import 'package:todo/screens/add_task.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:google_fonts/google_fonts.da... | 5 |
omaralloush/new-shope | e9b1d58 | lib/data/data_sources/local/sharedpreferences/user__local_repo.dart | Dart | www.github.com/omaralloush/new-shope/tree/main/lib/data/data_sources/local/sharedpreferences/user__local_repo.dart | https://raw.githubusercontent.com/omaralloush/new-shope/e9b1d58/lib/data/data_sources/local/sharedpreferences/user__local_repo.dart | omaralloush/new-shope e9b1d58 lib/data/data_sources/local/sharedpreferences/user__local_repo.dart | true | 200 | 882 | import 'dart:convert';
// import 'package:flutter/material.dart';
import 'package:new_shope/data/models/user/user_model.dart';
import 'package:shared_preferences/shared_preferences.dart';
class UserRepo {
static Future<void> setUserData(UserModel user) async {
var pref = await SharedPreferences.getInstance();
... | 7 |
VictorRadoi/personal_website | 44fe82d | lib/presentation/desktop/desktop_scaffold.dart | Dart | www.github.com/VictorRadoi/personal_website/tree/main/lib/presentation/desktop/desktop_scaffold.dart | https://raw.githubusercontent.com/VictorRadoi/personal_website/44fe82d/lib/presentation/desktop/desktop_scaffold.dart | VictorRadoi/personal_website 44fe82d lib/presentation/desktop/desktop_scaffold.dart | true | 200 | 3,884 | import 'package:flutter/material.dart';
import 'package:flutter_website/presentation/common/section_header.dart';
import 'package:flutter_website/presentation/desktop/sections/about_me_section.dart';
import 'package:flutter_website/presentation/desktop/sections/achievements_section.dart';
import 'package:flutter_websit... | 2 |
VeronicaG19/LigasFutbol1 | 5ad4b0b | lib/src/presentation/league_manager/tournaments/lm_tournament_v1/tournament_config_main.dart | Dart | www.github.com/VeronicaG19/LigasFutbol1/tree/main/lib/src/presentation/league_manager/tournaments/lm_tournament_v1/tournament_config_main.dart | https://raw.githubusercontent.com/VeronicaG19/LigasFutbol1/5ad4b0b/lib/src/presentation/league_manager/tournaments/lm_tournament_v1/tournament_config_main.dart | VeronicaG19/LigasFutbol1 5ad4b0b lib/src/presentation/league_manager/tournaments/lm_tournament_v1/tournament_config_main.dart | true | 200 | 2,232 | import 'package:flutter/material.dart';
import 'package:ligas_futbol_flutter/src/presentation/league_manager/tournaments/lm_tournament_v1/tournaments_widgets/clasification.dart';
import 'package:ligas_futbol_flutter/src/presentation/league_manager/tournaments/lm_tournament_v1/tournaments_widgets/tournament_configuratio... | 4 |
zfurkandurum/mycard | 25b0706 | lib/widget/home_card_widget.dart | Dart | www.github.com/zfurkandurum/mycard/tree/main/lib/widget/home_card_widget.dart | https://raw.githubusercontent.com/zfurkandurum/mycard/25b0706/lib/widget/home_card_widget.dart | zfurkandurum/mycard 25b0706 lib/widget/home_card_widget.dart | true | 200 | 1,873 | // ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:flutter/material.dart';
import 'package:mycard/Screen/CardDetail.dart';
class CardView extends StatefulWidget {
final String cardName;
final String fullName;
final String monthAndYear;
final String cardNumber;
final String h... | 3 |
zitherharpcommunity/antidart | 05a0670 | lib/src/kotlin/kotlin/core/classes.dart | Dart | www.github.com/zitherharpcommunity/antidart/tree/main/lib/src/kotlin/kotlin/core/classes.dart | https://raw.githubusercontent.com/zitherharpcommunity/antidart/05a0670/lib/src/kotlin/kotlin/core/classes.dart | zitherharpcommunity/antidart 05a0670 lib/src/kotlin/kotlin/core/classes.dart | true | 200 | 1,794 | part of '/src/kotlin/kotlin/core.dart';
/// Represents a version of the Kotlin standard library.
///
/// [major], [minor] and [patch] are integer components of a version,
/// they must be non-negative and not greater than 255 [MAX_COMPONENT_VALUE].
final class KotlinVersion {
/// Returns the current version of the K... | 0 |
codercurly/teklif | 4249651 | lib/pages/forbusiness/updatePages/update_customer_page.dart | Dart | www.github.com/codercurly/teklif/tree/main/lib/pages/forbusiness/updatePages/update_customer_page.dart | https://raw.githubusercontent.com/codercurly/teklif/4249651/lib/pages/forbusiness/updatePages/update_customer_page.dart | codercurly/teklif 4249651 lib/pages/forbusiness/updatePages/update_customer_page.dart | true | 200 | 14,863 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:image_picker/image_picker.dart';
import 'dart:io';
import 'package:teklif/base/dimension.dart';
import 'package:teklif/base/failed_snackbar.dart';
import 'package:teklif/base/success_snackbar.dart';
import 'package:... | 6 |
Ulysses007/JobTime | 4efcd2a | lib/app/modules/login/controller/login_state.dart | Dart | www.github.com/Ulysses007/JobTime/tree/main/lib/app/modules/login/controller/login_state.dart | https://raw.githubusercontent.com/Ulysses007/JobTime/4efcd2a/lib/app/modules/login/controller/login_state.dart | Ulysses007/JobTime 4efcd2a lib/app/modules/login/controller/login_state.dart | true | 200 | 608 | part of 'login_controller.dart';
enum LoginStatus{ initial, loading, failre }
class LoginState extends Equatable {
final LoginStatus status;
final String? errormessage;
const LoginState._({
required this.status,
this.errormessage
});
const LoginState.initial(): this._(status: LoginStatus.initia... | 1 |
muhammadfurqan2002/Expense-Tracker-App | e6b2b01 | lib/screens/home/blocs/get_expense_bloc.dart | Dart | www.github.com/muhammadfurqan2002/Expense-Tracker-App/tree/main/lib/screens/home/blocs/get_expense_bloc.dart | https://raw.githubusercontent.com/muhammadfurqan2002/Expense-Tracker-App/e6b2b01/lib/screens/home/blocs/get_expense_bloc.dart | muhammadfurqan2002/Expense-Tracker-App e6b2b01 lib/screens/home/blocs/get_expense_bloc.dart | true | 200 | 674 | import 'dart:async';
import 'package:bloc/bloc.dart';
import 'package:expense_repository/expense_repository.dart';
import 'package:meta/meta.dart';
part 'get_expense_event.dart';
part 'get_expense_state.dart';
class GetExpenseBloc extends Bloc<GetExpenseEvent, GetExpenseState> {
final ExpenseRepository expenseRe... | 5 |
Dilman01/ecommerce_app | bd84a2c | lib/features/customer/cart/presentation/widgets/cart_item.dart | Dart | www.github.com/Dilman01/ecommerce_app/tree/main/lib/features/customer/cart/presentation/widgets/cart_item.dart | https://raw.githubusercontent.com/Dilman01/ecommerce_app/bd84a2c/lib/features/customer/cart/presentation/widgets/cart_item.dart | Dilman01/ecommerce_app bd84a2c lib/features/customer/cart/presentation/widgets/cart_item.dart | true | 200 | 4,799 | import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:go_router/go_router.dart';
import 'packag... | 7 |
amitamrutiya/whatup_ui | da4fa7c | lib/models/call.dart | Dart | www.github.com/amitamrutiya/whatup_ui/tree/main/lib/models/call.dart | https://raw.githubusercontent.com/amitamrutiya/whatup_ui/da4fa7c/lib/models/call.dart | amitamrutiya/whatup_ui da4fa7c lib/models/call.dart | true | 200 | 987 | import 'package:flutter/material.dart';
class Call {
final String name;
final String time;
final String avatar;
final Icon callType;
Call(
{required this.name,
required this.time,
required this.avatar,
required this.callType});
static Icon callReceived = const Icon(
Icons.call... | 4 |
Tamiru-Alemnew/flutter-2024-proj-bloc | dbf6741 | family_cash_manager/lib/presentation/widgets/presentation/common_sidebar.dart | Dart | www.github.com/Tamiru-Alemnew/flutter-2024-proj-bloc/tree/main/family_cash_manager/lib/presentation/widgets/presentation/common_sidebar.dart | https://raw.githubusercontent.com/Tamiru-Alemnew/flutter-2024-proj-bloc/dbf6741/family_cash_manager/lib/presentation/widgets/presentation/common_sidebar.dart | Tamiru-Alemnew/flutter-2024-proj-bloc dbf6741 family_cash_manager/lib/presentation/widgets/presentation/common_sidebar.dart | true | 200 | 3,501 | import 'package:family_cash_manager/application/providers/user_bloc.dart';
import 'package:family_cash_manager/presentation/screens/budgeting_goal.dart';
import 'package:family_cash_manager/presentation/screens/children.dart';
import 'package:family_cash_manager/presentation/screens/edit_category.dart';
import 'package... | 0 |
sujalshakya/MovieTicketBooking_Flutter | 1f0c037 | lib/firebase_service.dart | Dart | www.github.com/sujalshakya/MovieTicketBooking_Flutter/tree/main/lib/firebase_service.dart | https://raw.githubusercontent.com/sujalshakya/MovieTicketBooking_Flutter/1f0c037/lib/firebase_service.dart | sujalshakya/MovieTicketBooking_Flutter 1f0c037 lib/firebase_service.dart | true | 200 | 368 | import 'package:cloud_firestore/cloud_firestore.dart';
class FirebaseService {
final CollectionReference timeSlotsCollection =
FirebaseFirestore.instance.collection('timeSlots');
Future<void> addTimeSlot(String timeSlot) async {
await timeSlotsCollection.add({
'timeSlot': timeSlot,
'timestam... | 3 |
Bunkheang-heng/Khmer-Fodd | fe29a02 | lib/widgets/recipe_filters.dart | Dart | www.github.com/Bunkheang-heng/Khmer-Fodd/tree/main/lib/widgets/recipe_filters.dart | https://raw.githubusercontent.com/Bunkheang-heng/Khmer-Fodd/fe29a02/lib/widgets/recipe_filters.dart | Bunkheang-heng/Khmer-Fodd fe29a02 lib/widgets/recipe_filters.dart | true | 200 | 8,234 | import 'package:flutter/material.dart';
class RecipeFilters extends StatefulWidget {
final TextEditingController searchController;
final String? selectedTimeFilter;
final double? selectedRating;
final String? selectedTag;
final List<String> availableTags;
final Function(String) onSearchChanged;
final Fun... | 2 |
guodong89758/flutterdemo | d8590ab | lib/ui/page/alert/alert_history_page.dart | Dart | www.github.com/guodong89758/flutterdemo/tree/main/lib/ui/page/alert/alert_history_page.dart | https://raw.githubusercontent.com/guodong89758/flutterdemo/d8590ab/lib/ui/page/alert/alert_history_page.dart | guodong89758/flutterdemo d8590ab lib/ui/page/alert/alert_history_page.dart | true | 200 | 9,549 | import 'package:bitfrog/ui/page/alert/model/alert_type_entity.dart';
import 'package:flutter/material.dart';
import 'package:bitfrog/base/base_page.dart';
import 'package:bitfrog/base/provider_widget.dart';
import 'package:bitfrog/event/alert_event.dart';
import 'package:bitfrog/event/event.dart';
import 'package:bitfr... | 1 |
xZAAAAAAA/coach | ea04401 | coach/lib/screens/welcome_screen.dart | Dart | www.github.com/xZAAAAAAA/coach/tree/main/coach/lib/screens/welcome_screen.dart | https://raw.githubusercontent.com/xZAAAAAAA/coach/ea04401/coach/lib/screens/welcome_screen.dart | xZAAAAAAA/coach ea04401 coach/lib/screens/welcome_screen.dart | true | 200 | 2,654 | import 'package:coach/api/service.dart';
import 'package:coach/api/whoop_client.dart';
import 'package:coach/components/themed_button.dart';
import 'package:coach/screens/objective_screen.dart';
import 'package:flutter/material.dart';
class WelcomeScreen extends StatefulWidget {
const WelcomeScreen({super.key, requi... | 6 |
MeetJotaniya/Flutter | 54f6eac | crud_operation/crud.dart | Dart | www.github.com/MeetJotaniya/Flutter/tree/main/crud_operation/crud.dart | https://raw.githubusercontent.com/MeetJotaniya/Flutter/54f6eac/crud_operation/crud.dart | MeetJotaniya/Flutter 54f6eac crud_operation/crud.dart | true | 200 | 6,270 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class Crud extends StatefulWidget {
const Crud({super.key});
@override
State<Crud> createState() => _CrudState();
}
class _CrudState extends State<Crud> {
List<Map<String, String>> items = [];
List<Map<String, Stri... | 5 |
Marriiamm/weather-app | 81a43cc | lib/model/weather_model.dart | Dart | www.github.com/Marriiamm/weather-app/tree/main/lib/model/weather_model.dart | https://raw.githubusercontent.com/Marriiamm/weather-app/81a43cc/lib/model/weather_model.dart | Marriiamm/weather-app 81a43cc lib/model/weather_model.dart | true | 200 | 723 | class WeatherModel {
final String name;
final String mainCondition;
final double temp;
final double windSpeed;
final int humidity;
final String condition;
WeatherModel({
required this.name,
required this.mainCondition,
required this.humidity,
required this.temp,
required this.windSpee... | 7 |
Utsa05/Video-Calling-App | 63a35a7 | lib/app_routes.dart | Dart | www.github.com/Utsa05/Video-Calling-App/tree/main/lib/app_routes.dart | https://raw.githubusercontent.com/Utsa05/Video-Calling-App/63a35a7/lib/app_routes.dart | Utsa05/Video-Calling-App 63a35a7 lib/app_routes.dart | true | 200 | 777 | import 'package:flutter/material.dart';
import 'package:video_call_app/presentations/constants/app_route_string.dart';
import 'package:video_call_app/presentations/pages/error/error_page.dart';
import 'package:video_call_app/presentations/pages/home/home_page.dart';
import 'package:video_call_app/presentations/pages/sp... | 4 |
khalidKE/quran | b0dfc37 | lib/sajdaCustomTile.dart | Dart | www.github.com/khalidKE/quran/tree/main/lib/sajdaCustomTile.dart | https://raw.githubusercontent.com/khalidKE/quran/b0dfc37/lib/sajdaCustomTile.dart | khalidKE/quran b0dfc37 lib/sajdaCustomTile.dart | true | 200 | 2,122 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:quran/Sajda.dart';
Widget SajdaCustomTile(SajdaAyat sajdaAyat, context) {
return Container(
padding: const EdgeInsets.all(16),
decoration: const BoxDecoration(color: Colors.white, boxShadow: [
BoxShadow(
... | 3 |
vxern/engine_io | 1654ca8 | packages/server/test/server/transport_test.dart | Dart | www.github.com/vxern/engine_io/tree/main/packages/server/test/server/transport_test.dart | https://raw.githubusercontent.com/vxern/engine_io/1654ca8/packages/server/test/server/transport_test.dart | vxern/engine_io 1654ca8 packages/server/test/server/transport_test.dart | true | 200 | 4,422 | // ignore_for_file: close_sinks
import 'dart:async';
import 'dart:io' hide Socket;
import 'package:test/test.dart';
import 'package:engine_io_server/engine_io_server.dart';
import '../shared.dart';
void main() {
late HttpClient client;
late Server server;
setUp(() async {
client = HttpClient();
serve... | 1 |
nblauren/wortmeister | 5aeef86 | lib/data/models/settings.dart | Dart | www.github.com/nblauren/wortmeister/tree/main/lib/data/models/settings.dart | https://raw.githubusercontent.com/nblauren/wortmeister/5aeef86/lib/data/models/settings.dart | nblauren/wortmeister 5aeef86 lib/data/models/settings.dart | true | 200 | 651 | class Settings {
final String userId;
final int dailyGoal;
final String language;
final bool reminders;
Settings(
{required this.userId,
required this.dailyGoal,
required this.language,
required this.reminders});
factory Settings.fromJson(Map<String, dynamic> json) {
return Set... | 0 |
malknany/Movie_App | 7ab9790 | lib/movie_app/data/datasources/remot_data_source.dart | Dart | www.github.com/malknany/Movie_App/tree/main/lib/movie_app/data/datasources/remot_data_source.dart | https://raw.githubusercontent.com/malknany/Movie_App/7ab9790/lib/movie_app/data/datasources/remot_data_source.dart | malknany/Movie_App 7ab9790 lib/movie_app/data/datasources/remot_data_source.dart | true | 200 | 3,314 | import 'package:dio/dio.dart';
import '../models/movie_detailes_model.dart';
import '../models/recommendation_model.dart';
import '../../domain/usecases/get_movie_detailes_use_case.dart';
import '../../domain/usecases/get_recommendation.dart';
import '../../../core/error/server_exceptions.dart';
import '../../../core/... | 2 |
AzharMunir21/sql_lit_form | aae04e5 | lib/component/Buttons.dart | Dart | www.github.com/AzharMunir21/sql_lit_form/tree/main/lib/component/Buttons.dart | https://raw.githubusercontent.com/AzharMunir21/sql_lit_form/aae04e5/lib/component/Buttons.dart | AzharMunir21/sql_lit_form aae04e5 lib/component/Buttons.dart | true | 200 | 1,141 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:get/get_core/src/get_main.dart';
class Buttons extends StatelessWidget {
final String text;
final Function() onTap;
final bool isLoading;
Buttons({
required this.text,
this.is... | 7 |
shravani9699/dart24 | 5f79906 | A11/program26.dart | Dart | www.github.com/shravani9699/dart24/tree/main/A11/program26.dart | https://raw.githubusercontent.com/shravani9699/dart24/5f79906/A11/program26.dart | shravani9699/dart24 5f79906 A11/program26.dart | true | 200 | 331 | class Core2web {
int x = 30;
int y = 30;
}
class Incubators extends Core2web {
int x;
Incubators(this.x);
void gun() {
this.x = 8;
this.y = 19;
}
void fun() {
print(super.x);
print(super.y);
}
}
void main() {
Incubators obj = Incubators(10);
obj.gun();
ob... | 6 |
AlexandreCaribe/BlastOff-Flutter | 0f072f4 | questaoquatro/lib/main.dart | Dart | www.github.com/AlexandreCaribe/BlastOff-Flutter/tree/main/questaoquatro/lib/main.dart | https://raw.githubusercontent.com/AlexandreCaribe/BlastOff-Flutter/0f072f4/questaoquatro/lib/main.dart | AlexandreCaribe/BlastOff-Flutter 0f072f4 questaoquatro/lib/main.dart | true | 200 | 3,823 | import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'dart:math';
import 'constant.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return Ma... | 5 |
Collins-01/Eden-Assessment- | 4678a62 | lib/presentation/widgets/app_button.dart | Dart | www.github.com/Collins-01/Eden-Assessment-/tree/main/lib/presentation/widgets/app_button.dart | https://raw.githubusercontent.com/Collins-01/Eden-Assessment-/4678a62/lib/presentation/widgets/app_button.dart | Collins-01/Eden-Assessment- 4678a62 lib/presentation/widgets/app_button.dart | true | 200 | 1,018 | import 'package:eden_demo/extensions/extensions.dart';
import 'package:eden_demo/utils/utils.dart';
import 'package:flutter/material.dart';
class AppButtonLong extends StatelessWidget {
final void Function()? onClick;
final String title;
const AppButtonLong({
Key? key,
this.onClick,
required this.ti... | 4 |
michael-shane-thomas/Bull-Bitcoin-Mobile | 80008cc | lib/_repository/wallet/internal_network.dart | Dart | www.github.com/michael-shane-thomas/Bull-Bitcoin-Mobile/tree/main/lib/_repository/wallet/internal_network.dart | https://raw.githubusercontent.com/michael-shane-thomas/Bull-Bitcoin-Mobile/80008cc/lib/_repository/wallet/internal_network.dart | michael-shane-thomas/Bull-Bitcoin-Mobile 80008cc lib/_repository/wallet/internal_network.dart | true | 200 | 1,458 | import 'package:bb_mobile/_pkg/error.dart';
import 'package:bdk_flutter/bdk_flutter.dart' as bdk;
class InternalNetworkRepository {
bdk.Blockchain? _bdkBlockchain;
String? _bitcoinUrl;
String? _liquidUrl;
// bool _isTestnet = false;
(bdk.Blockchain?, Err?) get bdkBlockchain => _bdkBlockchain != null
?... | 3 |
Nishant-Kumar-Rai/joke | 129ecde | test/lib/src/random_jokes_feature/presentation/bloc/random_joke_bloc_test.dart | Dart | www.github.com/Nishant-Kumar-Rai/joke/tree/main/test/lib/src/random_jokes_feature/presentation/bloc/random_joke_bloc_test.dart | https://raw.githubusercontent.com/Nishant-Kumar-Rai/joke/129ecde/test/lib/src/random_jokes_feature/presentation/bloc/random_joke_bloc_test.dart | Nishant-Kumar-Rai/joke 129ecde test/lib/src/random_jokes_feature/presentation/bloc/random_joke_bloc_test.dart | true | 200 | 1,627 | import 'package:bloc_test/bloc_test.dart';
import 'package:dartz/dartz.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:jokes/src/random_jokes_feature/domain/entities/random_jokes.dart';
import 'package:jokes/src/random_jokes_feature/domain/useCases/get_random_jokes_use_case.dart';
import 'packag... | 2 |
vhdrjb/vhdrjb.github.io | 5149f5a | lib/domain/src/project/find/find_favorite_projects_usecase.dart | Dart | www.github.com/vhdrjb/vhdrjb.github.io/tree/main/lib/domain/src/project/find/find_favorite_projects_usecase.dart | https://raw.githubusercontent.com/vhdrjb/vhdrjb.github.io/5149f5a/lib/domain/src/project/find/find_favorite_projects_usecase.dart | vhdrjb/vhdrjb.github.io 5149f5a lib/domain/src/project/find/find_favorite_projects_usecase.dart | true | 200 | 605 | import 'dart:async';
import 'package:portfolio_v2/data/src/repository/project/project_repository.dart';
import 'package:portfolio_v2/domain/src/base/usecase/supplier_usecase.dart';
import 'package:portfolio_v2/domain/src/project/project_entity.dart';
class FindFavoriteProjectsUsecase extends SupplierUsecase<Iterable<... | 1 |
rgdev6/working_days_calculator | 92b05ac | lib/calculator/widgets/increment_panel.dart | Dart | www.github.com/rgdev6/working_days_calculator/tree/main/lib/calculator/widgets/increment_panel.dart | https://raw.githubusercontent.com/rgdev6/working_days_calculator/92b05ac/lib/calculator/widgets/increment_panel.dart | rgdev6/working_days_calculator 92b05ac lib/calculator/widgets/increment_panel.dart | true | 200 | 2,189 | import "package:flutter/material.dart";
class IncrementPanel extends StatefulWidget {
IncrementPanel(
{Key? key,
required this.counter,
required,
required this.onIncrement,
required this.onDecrement})
: super(key: key);
final Function onIncrement;
final Function onDecrement;
... | 0 |
Kavishka-santhush/chessMobile | fb2046b | lib/widgets/chess_board.dart | Dart | www.github.com/Kavishka-santhush/chessMobile/tree/main/lib/widgets/chess_board.dart | https://raw.githubusercontent.com/Kavishka-santhush/chessMobile/fb2046b/lib/widgets/chess_board.dart | Kavishka-santhush/chessMobile fb2046b lib/widgets/chess_board.dart | true | 200 | 2,088 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../providers/game_provider.dart';
import 'chess_piece.dart';
import 'package:chess/chess.dart' as chess;
class ChessBoard extends StatelessWidget {
const ChessBoard({super.key});
@override
Widget build(BuildContext context)... | 7 |
Gokuls-2003/twitter_clone | bc332fa | lib/features/auth/view/login_view.dart | Dart | www.github.com/Gokuls-2003/twitter_clone/tree/main/lib/features/auth/view/login_view.dart | https://raw.githubusercontent.com/Gokuls-2003/twitter_clone/bc332fa/lib/features/auth/view/login_view.dart | Gokuls-2003/twitter_clone bc332fa lib/features/auth/view/login_view.dart | true | 200 | 3,202 | import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:twitter_clone/common/loading_page.dart';
import 'package:twitter_clone/common/rounded_small_button.dart';
import 'package:twitter_clone/constants/constants.dart';
impo... | 6 |
nestorsgarzonc/oyt-diner | 80b4818 | lib/features/auth/provider/auth_state.dart | Dart | www.github.com/nestorsgarzonc/oyt-diner/tree/main/lib/features/auth/provider/auth_state.dart | https://raw.githubusercontent.com/nestorsgarzonc/oyt-diner/80b4818/lib/features/auth/provider/auth_state.dart | nestorsgarzonc/oyt-diner 80b4818 lib/features/auth/provider/auth_state.dart | true | 200 | 481 | import 'package:equatable/equatable.dart';
import 'package:oyt_front_auth/models/auth_model.dart';
import 'package:oyt_front_core/wrappers/state_wrapper.dart';
class AuthState extends Equatable {
const AuthState({required this.authModel});
final StateAsync<AuthModel> authModel;
AuthState copyWith({StateAsync<A... | 5 |
vania-dart/framework | 7216632 | lib/src/http/request/request_file.dart | Dart | www.github.com/vania-dart/framework/tree/main/lib/src/http/request/request_file.dart | https://raw.githubusercontent.com/vania-dart/framework/7216632/lib/src/http/request/request_file.dart | vania-dart/framework 7216632 lib/src/http/request/request_file.dart | true | 200 | 3,815 | import 'dart:io';
import 'dart:typed_data';
import 'package:path/path.dart' as path;
import 'package:mime/mime.dart';
import 'package:vania/src/utils/functions.dart';
import 'package:vania/vania.dart';
class RequestFile {
final String filename;
final String filetype;
final MimeMultipart stream;
Uint8List? _byt... | 4 |
MUKesh98m/tiktok | 7755603 | lib/controllers/auth_controlle.dart | Dart | www.github.com/MUKesh98m/tiktok/tree/main/lib/controllers/auth_controlle.dart | https://raw.githubusercontent.com/MUKesh98m/tiktok/7755603/lib/controllers/auth_controlle.dart | MUKesh98m/tiktok 7755603 lib/controllers/auth_controlle.dart | true | 200 | 3,171 | import 'dart:io';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_storage/firebase_storage.dart';
import 'package:get/get_state_manager/src/simple/get_controllers.dart';
import 'package:get/get.dart';
import 'package:image_picker/image_... | 2 |
otaviohenrique1/dart_orientacao_objetos | 3a11ff2 | bin/teste2.dart | Dart | www.github.com/otaviohenrique1/dart_orientacao_objetos/tree/main/bin/teste2.dart | https://raw.githubusercontent.com/otaviohenrique1/dart_orientacao_objetos/3a11ff2/bin/teste2.dart | otaviohenrique1/dart_orientacao_objetos 3a11ff2 bin/teste2.dart | true | 200 | 594 | String toString(
{required String nome,
required double peso,
required diasDesdeColheita,
int diasParaMadura = 30,
bool? isMadura}) {
// ignore: prefer_conditional_assignment
if (isMadura == null) {
isMadura = diasDesdeColheita >= diasParaMadura;
}
String maduraString = "";
if (isMadu... | 1 |
berkayyoral/fillogo-latest | 3dfaa21 | lib/models/user/profile/set_password.dart | Dart | www.github.com/berkayyoral/fillogo-latest/tree/main/lib/models/user/profile/set_password.dart | https://raw.githubusercontent.com/berkayyoral/fillogo-latest/3dfaa21/lib/models/user/profile/set_password.dart | berkayyoral/fillogo-latest 3dfaa21 lib/models/user/profile/set_password.dart | true | 200 | 627 | class SetPasswordRequest {
String? oldPassword;
String? newPassword;
String? newPasswordAgain;
SetPasswordRequest(
{this.oldPassword, this.newPassword, this.newPasswordAgain});
SetPasswordRequest.fromJson(Map<String, dynamic> json) {
oldPassword = json['oldPassword'];
newPassword = json['newPa... | 3 |
Keros67/portfolio | 00e70ef | lib/pages/portfolio_screen.dart | Dart | www.github.com/Keros67/portfolio/tree/main/lib/pages/portfolio_screen.dart | https://raw.githubusercontent.com/Keros67/portfolio/00e70ef/lib/pages/portfolio_screen.dart | Keros67/portfolio 00e70ef lib/pages/portfolio_screen.dart | true | 200 | 677 | import 'package:flutter/material.dart';
import 'package:portfolio/pages/portfolio_body.dart';
class PortfolioScreen extends StatelessWidget {
const PortfolioScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: Builder(
buil... | 7 |
Sanju-1211/FlutterProjects | 1517bb0 | bmi_calculator/lib/ReusableCard.dart | Dart | www.github.com/Sanju-1211/FlutterProjects/tree/main/bmi_calculator/lib/ReusableCard.dart | https://raw.githubusercontent.com/Sanju-1211/FlutterProjects/1517bb0/bmi_calculator/lib/ReusableCard.dart | Sanju-1211/FlutterProjects 1517bb0 bmi_calculator/lib/ReusableCard.dart | true | 200 | 480 | import 'package:flutter/material.dart';
class reusableCard extends StatelessWidget {
final Color colour;
final Widget childCard;
reusableCard({this.colour, this.childCard});
@override
Widget build(BuildContext context) {
return Container(
child: childCard,
height: 200,
width: 175,
... | 6 |
jayasreeraju642000/qfir | a789f1b | qfinr/lib/pages/settings/profile.dart | Dart | www.github.com/jayasreeraju642000/qfir/tree/main/qfinr/lib/pages/settings/profile.dart | https://raw.githubusercontent.com/jayasreeraju642000/qfir/a789f1b/qfinr/lib/pages/settings/profile.dart | jayasreeraju642000/qfir a789f1b qfinr/lib/pages/settings/profile.dart | true | 200 | 8,622 | import 'dart:async';
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import '../../models/main_model.dart';
import '../../widgets/widget_common.dart';
class SettingsProfilePage extends StatefulWidget {
MainModel model;
SettingsProfilePage(this.model);
... | 5 |
Ali1910/DoctorApp-main | 7f23f77 | lib/Features/questionandanswer/asnwer/data/answer_model.dart | Dart | www.github.com/Ali1910/DoctorApp-main/tree/main/lib/Features/questionandanswer/asnwer/data/answer_model.dart | https://raw.githubusercontent.com/Ali1910/DoctorApp-main/7f23f77/lib/Features/questionandanswer/asnwer/data/answer_model.dart | Ali1910/DoctorApp-main 7f23f77 lib/Features/questionandanswer/asnwer/data/answer_model.dart | true | 200 | 1,055 | class AnswerModel {
final Answer answer;
final Doctor doctor;
final Speciality speciality;
AnswerModel(
{required this.answer, required this.doctor, required this.speciality});
factory AnswerModel.json(healthJson, doctorJson, specialityJson) {
return AnswerModel(
answer: Answer.json(healthJs... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.