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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
reedington/TherapEase | ae57239 | frontend/lib/views/listening/view.dart | Dart | www.github.com/reedington/TherapEase/tree/main/frontend/lib/views/listening/view.dart | https://raw.githubusercontent.com/reedington/TherapEase/ae57239/frontend/lib/views/listening/view.dart | reedington/TherapEase ae57239 frontend/lib/views/listening/view.dart | true | 200 | 3,055 | part of 'controller.dart';
class ListeningView
extends StatelessView<ListeningScreen, ListeningController> {
const ListeningView(super.state, {super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"Recovery Nexus",
sty... | 0 |
somnathreddy1814/Flutter | 2496405 | review_radar-main/lib/models/reviews.dart | Dart | www.github.com/somnathreddy1814/Flutter/tree/main/review_radar-main/lib/models/reviews.dart | https://raw.githubusercontent.com/somnathreddy1814/Flutter/2496405/review_radar-main/lib/models/reviews.dart | somnathreddy1814/Flutter 2496405 review_radar-main/lib/models/reviews.dart | true | 200 | 1,231 | class ReviewsResponse {
List<Review> reviews;
List<String> screens;
String appName;
ReviewsResponse({
required this.reviews,
required this.screens,
required this.appName
});
factory ReviewsResponse.fromJson(Map<String, dynamic> json) {
return ReviewsResponse(
reviews: Review.listFrom... | 1 |
AnuragNishad12/MiniMinds | e29e481 | lib/EnglishComponents/Animals/Fox/RedFox.dart | Dart | www.github.com/AnuragNishad12/MiniMinds/tree/main/lib/EnglishComponents/Animals/Fox/RedFox.dart | https://raw.githubusercontent.com/AnuragNishad12/MiniMinds/e29e481/lib/EnglishComponents/Animals/Fox/RedFox.dart | AnuragNishad12/MiniMinds e29e481 lib/EnglishComponents/Animals/Fox/RedFox.dart | true | 200 | 5,744 | import 'package:firebase_storage/firebase_storage.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import '../EnglishComponents/Animals/AnimalDetailsPage/AnimalsPage/Bears.dart';
class RedFox extends StatefulWidget {
const RedFox({super.key});
@override
State<RedF... | 6 |
robinsonnc/puc-se | 7bb1144 | lib/views/account/safety_screen.dart | Dart | www.github.com/robinsonnc/puc-se/tree/main/lib/views/account/safety_screen.dart | https://raw.githubusercontent.com/robinsonnc/puc-se/7bb1144/lib/views/account/safety_screen.dart | robinsonnc/puc-se 7bb1144 lib/views/account/safety_screen.dart | true | 200 | 466 | import 'package:flutter/material.dart';
class SafetyScreen extends StatelessWidget {
static const routeName = '/SafetyScreen';
const SafetyScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Safety Screen'),
),
... | 3 |
todormitevski/MIS-Lab2 | 371f598 | lib/widgets/joke_card.dart | Dart | www.github.com/todormitevski/MIS-Lab2/tree/main/lib/widgets/joke_card.dart | https://raw.githubusercontent.com/todormitevski/MIS-Lab2/371f598/lib/widgets/joke_card.dart | todormitevski/MIS-Lab2 371f598 lib/widgets/joke_card.dart | true | 200 | 573 | import 'package:flutter/material.dart';
class JokeCard extends StatelessWidget {
final String type;
final VoidCallback onTap;
const JokeCard({Key? key, required this.type, required this.onTap})
: super(key: key);
@override
Widget build(BuildContext context) {
return Card(
color: Colors.whit... | 2 |
samaxz/youtube_clone | 4306b5f | lib/data/info/base_info_state.dart | Dart | www.github.com/samaxz/youtube_clone/tree/main/lib/data/info/base_info_state.dart | https://raw.githubusercontent.com/samaxz/youtube_clone/4306b5f/lib/data/info/base_info_state.dart | samaxz/youtube_clone 4306b5f lib/data/info/base_info_state.dart | true | 200 | 639 | import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:youtube_clone/data/info/base_info.dart';
import 'package:youtube_clone/data/info/youtube_failure.dart';
part 'base_info_state.freezed.dart';
@freezed
class BaseInfoState<T> with _$BaseInfoState<T> {
const BaseInfoState._();
const factor... | 4 |
Shawon-Lodh/pokedex | 3c5d3c8 | lib/utils/extension.dart | Dart | www.github.com/Shawon-Lodh/pokedex/tree/main/lib/utils/extension.dart | https://raw.githubusercontent.com/Shawon-Lodh/pokedex/3c5d3c8/lib/utils/extension.dart | Shawon-Lodh/pokedex 3c5d3c8 lib/utils/extension.dart | true | 200 | 8,474 |
import 'dart:developer' as darttools show log;
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart'
show AppLocalizations;
import 'package:intl/intl.dart';
//import 'package:flutter_riverpod/flutter_riverpod.dart';
import '/c... | 7 |
Archanciel/dart_tutorial | 31f4f5a | class_basic/class_static_and_private/refac_math_fin_actualisation.dart | Dart | www.github.com/Archanciel/dart_tutorial/tree/main/class_basic/class_static_and_private/refac_math_fin_actualisation.dart | https://raw.githubusercontent.com/Archanciel/dart_tutorial/31f4f5a/class_basic/class_static_and_private/refac_math_fin_actualisation.dart | Archanciel/dart_tutorial 31f4f5a class_basic/class_static_and_private/refac_math_fin_actualisation.dart | true | 200 | 1,572 | import 'dart:math';
void main() {
double oblig = 1000;
int n = 5;
double rOblig = 0.02;
double rCurrent = 0.05;
var rObligActualisationRate = pow(1 + rOblig, -n);
num resNegPower_rOblig = oblig * rObligActualisationRate;
var rObligComposit = pow(1 + rOblig, n);
print('rObligComposit $rObligComposit')... | 5 |
Iamgauravkanani/budget_tracker_sqlite_getX_flutter | 96706b0 | lib/modules/utils/components/pages/ view_spending.dart | Dart | www.github.com/Iamgauravkanani/budget_tracker_sqlite_getX_flutter/tree/main/lib/modules/utils/components/pages/ view_spending.dart | https://raw.githubusercontent.com/Iamgauravkanani/budget_tracker_sqlite_getX_flutter/96706b0/lib/modules/utils/components/pages/%20view_spending.dart | Iamgauravkanani/budget_tracker_sqlite_getX_flutter 96706b0 lib/modules/utils/components/pages/ view_spending.dart | true | 200 | 2,963 | // ignore_for_file: unnecessary_null_comparison
import 'package:budget_tracker_app_11/modules/screens/home/controller/spending_controller.dart';
import 'package:budget_tracker_app_11/modules/utils/helpers/db_helper.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../../../screens/ho... | 6 |
TrackMyIndoorWorkout/TrackMyIndoorWorkout | 2366a60 | test/step_climber_test.dart | Dart | www.github.com/TrackMyIndoorWorkout/TrackMyIndoorWorkout/tree/main/test/step_climber_test.dart | https://raw.githubusercontent.com/TrackMyIndoorWorkout/TrackMyIndoorWorkout/2366a60/test/step_climber_test.dart | TrackMyIndoorWorkout/TrackMyIndoorWorkout 2366a60 test/step_climber_test.dart | true | 200 | 763 | import 'package:flutter_test/flutter_test.dart';
import 'package:track_my_indoor_exercise/devices/device_factory.dart';
import 'package:track_my_indoor_exercise/devices/device_fourcc.dart';
import 'package:track_my_indoor_exercise/persistence/record.dart';
import 'package:track_my_indoor_exercise/utils/constants.dart';... | 1 |
intiqamquluzada/burlaxatun-flutter | 91fb986 | lib/main.dart | Dart | www.github.com/intiqamquluzada/burlaxatun-flutter/tree/main/lib/main.dart | https://raw.githubusercontent.com/intiqamquluzada/burlaxatun-flutter/91fb986/lib/main.dart | intiqamquluzada/burlaxatun-flutter 91fb986 lib/main.dart | true | 200 | 2,214 | import 'package:burla_xatun/utils/constants/color_constants.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:hive_flutter/hive_flutter.dart';
import 'cubits/language_cubit/language_cubit.da... | 0 |
leofab/fisca | 0a3c275 | lib/screens/yolo_extracted/yolo_extracted_view_model.dart | Dart | www.github.com/leofab/fisca/tree/main/lib/screens/yolo_extracted/yolo_extracted_view_model.dart | https://raw.githubusercontent.com/leofab/fisca/0a3c275/lib/screens/yolo_extracted/yolo_extracted_view_model.dart | leofab/fisca 0a3c275 lib/screens/yolo_extracted/yolo_extracted_view_model.dart | true | 200 | 1,118 | import 'dart:io';
import 'dart:typed_data';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
import 'package:logger/logger.dart';
class YoloExtractedViewModel extends ChangeNotifier {
final ImagePicker _imagePicker = ImagePicker();
XFile? _capturedImage;
XFile? get captur... | 3 |
CesarArellano/Flutter-Advanced-Course | 8c304a9 | chat_app/lib/services/socket_service.dart | Dart | www.github.com/CesarArellano/Flutter-Advanced-Course/tree/main/chat_app/lib/services/socket_service.dart | https://raw.githubusercontent.com/CesarArellano/Flutter-Advanced-Course/8c304a9/chat_app/lib/services/socket_service.dart | CesarArellano/Flutter-Advanced-Course 8c304a9 chat_app/lib/services/socket_service.dart | true | 200 | 1,198 | import 'package:flutter/material.dart';
import 'package:socket_io_client/socket_io_client.dart' as io;
import '../global/environment.dart';
import 'auth_service.dart';
enum ServerStatus { online, offline, connecting }
class SocketService with ChangeNotifier {
ServerStatus _serverStatus = ServerStatus.connecting;
... | 4 |
MarkisDev/wekeep_service | 2ddc574 | lib/app/data/repositories/service_repository.dart | Dart | www.github.com/MarkisDev/wekeep_service/tree/main/lib/app/data/repositories/service_repository.dart | https://raw.githubusercontent.com/MarkisDev/wekeep_service/2ddc574/lib/app/data/repositories/service_repository.dart | MarkisDev/wekeep_service 2ddc574 lib/app/data/repositories/service_repository.dart | true | 200 | 816 | import 'package:atf/app/data/models/request_model.dart';
import 'package:atf/app/data/providers/firestore_provider.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:get/get_connect/http/src/request/request.dart';
class ServiceRepository {
requestStream(String uid) {
var product... | 7 |
Samuelungbede1/my-portfolio | f9549ec | lib/common/controller/app_controller.dart | Dart | www.github.com/Samuelungbede1/my-portfolio/tree/main/lib/common/controller/app_controller.dart | https://raw.githubusercontent.com/Samuelungbede1/my-portfolio/f9549ec/lib/common/controller/app_controller.dart | Samuelungbede1/my-portfolio f9549ec lib/common/controller/app_controller.dart | true | 200 | 1,191 |
import 'dart:convert';
import 'package:flutter/services.dart';
import 'package:get/get.dart';
import 'package:kiwi/kiwi.dart';
import 'package:my_portfolio/use_cases/now_playing_movies/controller/movie_list_controller.dart';
import '../../api/api.dart';
import '../../use_cases/guest_login/view/login_screen.dart';
imp... | 5 |
aryanV127/s2q2_pages | 9c9072c | lib/pages/our_services.dart | Dart | www.github.com/aryanV127/s2q2_pages/tree/main/lib/pages/our_services.dart | https://raw.githubusercontent.com/aryanV127/s2q2_pages/9c9072c/lib/pages/our_services.dart | aryanV127/s2q2_pages 9c9072c lib/pages/our_services.dart | true | 200 | 2,024 | import 'package:flutter/material.dart';
class OurServices extends StatelessWidget {
const OurServices({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Padding(
padding: const EdgeInsets.all(20),
child: Row(
mainAxisAlignment: MainAxisAlignme... | 1 |
Dzikri7/FlutterWidget | 919fbd2 | lib/matakuliah/MataKuliahDetail.dart | Dart | www.github.com/Dzikri7/FlutterWidget/tree/main/lib/matakuliah/MataKuliahDetail.dart | https://raw.githubusercontent.com/Dzikri7/FlutterWidget/919fbd2/lib/matakuliah/MataKuliahDetail.dart | Dzikri7/FlutterWidget 919fbd2 lib/matakuliah/MataKuliahDetail.dart | true | 200 | 1,172 | import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'DataMataKuliah.dart';
class MataKuliahDetail extends StatefulWidget {
final String? KodeMataKuliah;
final String? NamaMataKuliah;
final String? SKS;
const MataKuliahDetail({Key? key, this.KodeMataKuliah, this.NamaMataKuli... | 6 |
shresmanoj1/schoolworksproApp | e4fab7b | lib/response/connecteddevice_response.dart | Dart | www.github.com/shresmanoj1/schoolworksproApp/tree/main/lib/response/connecteddevice_response.dart | https://raw.githubusercontent.com/shresmanoj1/schoolworksproApp/e4fab7b/lib/response/connecteddevice_response.dart | shresmanoj1/schoolworksproApp e4fab7b lib/response/connecteddevice_response.dart | true | 200 | 2,569 | // To parse this JSON data, do
//
// final connecteddeviceresponse = connecteddeviceresponseFromJson(jsonString);
import 'dart:convert';
Connecteddeviceresponse connecteddeviceresponseFromJson(String str) =>
Connecteddeviceresponse.fromJson(json.decode(str));
String connecteddeviceresponseToJson(Connecteddev... | 0 |
Dhyoga/simple-login | 9376308 | lib/login.dart | Dart | www.github.com/Dhyoga/simple-login/tree/main/lib/login.dart | https://raw.githubusercontent.com/Dhyoga/simple-login/9376308/lib/login.dart | Dhyoga/simple-login 9376308 lib/login.dart | true | 200 | 2,840 | import 'package:flutter/material.dart';
import 'package:submission/dashboard.dart';
class Login extends StatefulWidget {
const Login({Key? key}) : super(key: key);
@override
State<Login> createState() => _Login();
}
class _Login extends State<Login> {
bool _hidePassword=true;
String? pw;
@override
Widg... | 2 |
Saronik5883/Chatty | 6777a3f | lib/features/group/screens/create_group_screen.dart | Dart | www.github.com/Saronik5883/Chatty/tree/main/lib/features/group/screens/create_group_screen.dart | https://raw.githubusercontent.com/Saronik5883/Chatty/6777a3f/lib/features/group/screens/create_group_screen.dart | Saronik5883/Chatty 6777a3f lib/features/group/screens/create_group_screen.dart | true | 200 | 3,401 | import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:Chatty_ui/colors.dart';
import 'package:Chatty_ui/common/utils/utils.dart';
import '../controller/group_controller.dart';
import '../widgets/select_contacts_group.dart';
class CreateGrou... | 3 |
cindysintiya/Mobile_Back-End | c688683 | M03 - Using SQ(F)Lite to Store Data in Local Database/lib/history_screen.dart | Dart | www.github.com/cindysintiya/Mobile_Back-End/tree/main/M03 - Using SQ(F)Lite to Store Data in Local Database/lib/history_screen.dart | https://raw.githubusercontent.com/cindysintiya/Mobile_Back-End/c688683/M03%20-%20Using%20SQ%28F%29Lite%20to%20Store%20Data%20in%20Local%20Database/lib/history_screen.dart | cindysintiya/Mobile_Back-End c688683 M03 - Using SQ(F)Lite to Store Data in Local Database/lib/history_screen.dart | true | 200 | 1,772 | import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:provider/provider.dart';
import 'package:case_study_latihan/my_provider.dart';
import 'package:case_study_latihan/db/dbhelper.dart';
class HistoryScreen extends StatefulWidget {
const HistoryScreen({super.key});
@override
S... | 4 |
Jhinnn/digital-computation | e6a200d | lib/main.dart | Dart | www.github.com/Jhinnn/digital-computation/tree/main/lib/main.dart | https://raw.githubusercontent.com/Jhinnn/digital-computation/e6a200d/lib/main.dart | Jhinnn/digital-computation e6a200d lib/main.dart | true | 200 | 2,657 | import 'package:digital_computation/page/daily_practice/daily_practice_page.dart';
import 'package:digital_computation/page/setting/setting_page.dart';
import 'package:digital_computation/page/statistics/statistics_page.dart';
import 'package:digital_computation/page/systematic_training/systematic_training_page.dart';
... | 7 |
TalhaShakel/User-car-app | 1f40929 | lib/mainScreens/profile_screen.dart | Dart | www.github.com/TalhaShakel/User-car-app/tree/main/lib/mainScreens/profile_screen.dart | https://raw.githubusercontent.com/TalhaShakel/User-car-app/1f40929/lib/mainScreens/profile_screen.dart | TalhaShakel/User-car-app 1f40929 lib/mainScreens/profile_screen.dart | true | 200 | 2,743 | import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:get/get.dart';
import 'package:users_app/controller.dart';
import 'package:users_app/global/global.dart';
import 'package:users_app/widgets/info_design_ui.dart';
class ProfileScreen extends StatefulWidget {
@override
St... | 5 |
JoseMiguelRodriguezR/MyNotes-Flutter | 18dc4ed | test/auth_test.dart | Dart | www.github.com/JoseMiguelRodriguezR/MyNotes-Flutter/tree/main/test/auth_test.dart | https://raw.githubusercontent.com/JoseMiguelRodriguezR/MyNotes-Flutter/18dc4ed/test/auth_test.dart | JoseMiguelRodriguezR/MyNotes-Flutter 18dc4ed test/auth_test.dart | true | 200 | 4,040 | import 'package:firstapp/services/auth/auth_exceptions.dart';
import 'package:firstapp/services/auth/auth_provider.dart';
import 'package:firstapp/services/auth/auth_user.dart';
import 'package:test/test.dart';
void main(){
group('Mock Authentication', () {
final provider = MockAuthProvider();
test('Should n... | 6 |
LandikaBramastaErlianSusilo/project-uts | e071d90 | lib/question_model.dart | Dart | www.github.com/LandikaBramastaErlianSusilo/project-uts/tree/main/lib/question_model.dart | https://raw.githubusercontent.com/LandikaBramastaErlianSusilo/project-uts/e071d90/lib/question_model.dart | LandikaBramastaErlianSusilo/project-uts e071d90 lib/question_model.dart | true | 200 | 1,239 | class Question {
final String questionText;
final List<Answer> answersList;
Question(this.questionText, this.answersList);
}
class Answer {
final String answerText;
final bool isCorrect;
Answer(this.answerText, this.isCorrect);
}
List<Question> getQuestions() {
List<Question> list = [];
//ADD questi... | 0 |
shajin-screl/fixed_nb_utils | 37087b3 | lib/src/extensions/context_extensions.dart | Dart | www.github.com/shajin-screl/fixed_nb_utils/tree/main/lib/src/extensions/context_extensions.dart | https://raw.githubusercontent.com/shajin-screl/fixed_nb_utils/37087b3/lib/src/extensions/context_extensions.dart | shajin-screl/fixed_nb_utils 37087b3 lib/src/extensions/context_extensions.dart | true | 200 | 4,212 | import 'package:flutter/material.dart';
import 'package:nb_utils/nb_utils.dart';
// Context Extensions
extension ContextExtensions on BuildContext {
/// return screen size
Size size() => MediaQuery.of(this).size;
/// return screen width
double width() => maxScreenWidth ?? MediaQuery.of(this).size.wid... | 1 |
FelipeRO301/CadastroProdutos- | e0aef3d | lib/pages/login_screens.dart | Dart | www.github.com/FelipeRO301/CadastroProdutos-/tree/main/lib/pages/login_screens.dart | https://raw.githubusercontent.com/FelipeRO301/CadastroProdutos-/e0aef3d/lib/pages/login_screens.dart | FelipeRO301/CadastroProdutos- e0aef3d lib/pages/login_screens.dart | true | 200 | 2,923 | import 'package:flutter/material.dart';
import 'package:produtos_mobile_2/controllers/usuario_controller.dart';
import 'package:produtos_mobile_2/model/usuario_model.dart';
import 'package:produtos_mobile_2/pages/home_screen.dart';
class LoginScreen extends StatefulWidget {
const LoginScreen({super.key});
@overri... | 2 |
mahmoudkamalx14/responsive_dash_board | 9d39c5f | lib/dashboard/widgets/card/my_card_image.dart | Dart | www.github.com/mahmoudkamalx14/responsive_dash_board/tree/main/lib/dashboard/widgets/card/my_card_image.dart | https://raw.githubusercontent.com/mahmoudkamalx14/responsive_dash_board/9d39c5f/lib/dashboard/widgets/card/my_card_image.dart | mahmoudkamalx14/responsive_dash_board 9d39c5f lib/dashboard/widgets/card/my_card_image.dart | true | 200 | 1,965 | import 'package:flutter/material.dart';
import 'package:responsive_dash_board/core/theme/app_styles.dart';
import 'package:responsive_dash_board/core/utils/app_images.dart';
class MyCardImage extends StatelessWidget {
const MyCardImage({super.key});
@override
Widget build(BuildContext context) {
return Aspe... | 3 |
EslamElnady0/bookly | abc4f76 | lib/features/search/data/repos/search_repo_impl.dart | Dart | www.github.com/EslamElnady0/bookly/tree/main/lib/features/search/data/repos/search_repo_impl.dart | https://raw.githubusercontent.com/EslamElnady0/bookly/abc4f76/lib/features/search/data/repos/search_repo_impl.dart | EslamElnady0/bookly abc4f76 lib/features/search/data/repos/search_repo_impl.dart | true | 200 | 986 | import 'package:bookly/core/errors/failures.dart';
import 'package:bookly/core/models/book/book_model.dart';
import 'package:bookly/features/search/data/repos/search_repo.dart';
import 'package:dartz/dartz.dart';
import 'package:dio/dio.dart';
import '../../../../core/util/api_service.dart';
class SearchRepoImpl impl... | 4 |
knusperkrone/RIPE-frontend | e7cc649 | lib/service/local_network_client_service.dart | Dart | www.github.com/knusperkrone/RIPE-frontend/tree/main/lib/service/local_network_client_service.dart | https://raw.githubusercontent.com/knusperkrone/RIPE-frontend/e7cc649/lib/service/local_network_client_service.dart | knusperkrone/RIPE-frontend e7cc649 lib/service/local_network_client_service.dart | true | 200 | 1,008 | import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:ripe/service/backend_service.dart';
import '../constants.dart';
class LocalNetworkClientService extends BackendService {
final _client = new http.Client();
Future<bool> checkAvailable() async {
try {
await _client.post(
... | 7 |
4rthurmonteiro/perimeterx_flutter_plugin | 2716685 | example/lib/main.dart | Dart | www.github.com/4rthurmonteiro/perimeterx_flutter_plugin/tree/main/example/lib/main.dart | https://raw.githubusercontent.com/4rthurmonteiro/perimeterx_flutter_plugin/2716685/example/lib/main.dart | 4rthurmonteiro/perimeterx_flutter_plugin 2716685 example/lib/main.dart | true | 200 | 3,134 | import 'package:flutter/material.dart';
import 'dart:async';
import 'package:http/http.dart' as http;
import 'package:perimeterx_flutter_plugin/perimeterx_flutter_plugin.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> create... | 5 |
YinMinKhin062/booktickets | 7645012 | lib/trips/screen/homeWidgets/tripForm/tripFormComponents/dateComponent.dart | Dart | www.github.com/YinMinKhin062/booktickets/tree/main/lib/trips/screen/homeWidgets/tripForm/tripFormComponents/dateComponent.dart | https://raw.githubusercontent.com/YinMinKhin062/booktickets/7645012/lib/trips/screen/homeWidgets/tripForm/tripFormComponents/dateComponent.dart | YinMinKhin062/booktickets 7645012 lib/trips/screen/homeWidgets/tripForm/tripFormComponents/dateComponent.dart | true | 200 | 1,905 | import 'package:booktickets/trips/controllers/home/trip/bookingController.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:iconsax/iconsax.dart';
import 'package:intl/intl.dart';
import '../bookContainer.dart';
class DateComponent extends StatelessWidget {
const DateCompo... | 0 |
ShashankRapolu07/Campus-Confessions-App | 33cf088 | lib/rankCardIII.dart | Dart | www.github.com/ShashankRapolu07/Campus-Confessions-App/tree/main/lib/rankCardIII.dart | https://raw.githubusercontent.com/ShashankRapolu07/Campus-Confessions-App/33cf088/lib/rankCardIII.dart | ShashankRapolu07/Campus-Confessions-App 33cf088 lib/rankCardIII.dart | true | 200 | 6,187 | import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:pointycastle/asymmetric/api.dart';
import 'package:untitled2/firestore_methods.dart';
import 'package:untitled2/models.dart... | 1 |
AMBE1203/app-temp | 941aedf | lib/resources/styles/app_colors.dart | Dart | www.github.com/AMBE1203/app-temp/tree/main/lib/resources/styles/app_colors.dart | https://raw.githubusercontent.com/AMBE1203/app-temp/941aedf/lib/resources/styles/app_colors.dart | AMBE1203/app-temp 941aedf lib/resources/styles/app_colors.dart | true | 200 | 2,679 | import 'package:flutter/material.dart';
import '../resources.dart';
class AppColors {
const AppColors({
required this.primaryColor,
required this.secondaryColor,
required this.primaryTextColor,
required this.secondaryTextColor,
required this.errorTextColor,
required this.primaryGradient,
... | 6 |
shang1219178163/flutter_templet_project | b44612f | lib/util/fade_page_route.dart | Dart | www.github.com/shang1219178163/flutter_templet_project/tree/main/lib/util/fade_page_route.dart | https://raw.githubusercontent.com/shang1219178163/flutter_templet_project/b44612f/lib/util/fade_page_route.dart | shang1219178163/flutter_templet_project b44612f lib/util/fade_page_route.dart | true | 200 | 744 | //
// CustomeMaterialPageRoute.dart
// flutter_templet_project
//
// Created by shang on 2024/7/12 23:19.
// Copyright © 2024/7/12 shang. All rights reserved.
//
import 'package:flutter/material.dart';
class FadePageRoute<T> extends MaterialPageRoute<T> {
FadePageRoute({
required WidgetBuilder builder,
... | 2 |
freedadel/wsilny | 6a4d26b | lib/utils/widgets/icon_and_text_widget.dart | Dart | www.github.com/freedadel/wsilny/tree/main/lib/utils/widgets/icon_and_text_widget.dart | https://raw.githubusercontent.com/freedadel/wsilny/6a4d26b/lib/utils/widgets/icon_and_text_widget.dart | freedadel/wsilny 6a4d26b lib/utils/widgets/icon_and_text_widget.dart | true | 200 | 558 | import 'package:flutter/cupertino.dart';
import 'package:wsilny/utils/widgets/small_text.dart';
class IconAndTextWidget extends StatelessWidget {
final String text;
final Color iconColor;
final IconData icon;
const IconAndTextWidget({Key? key,
required this.text,
required this.iconColor,
required t... | 3 |
mariamelgandour/Contact | 1e0b914 | lib/main.dart | Dart | www.github.com/mariamelgandour/Contact/tree/main/lib/main.dart | https://raw.githubusercontent.com/mariamelgandour/Contact/1e0b914/lib/main.dart | mariamelgandour/Contact 1e0b914 lib/main.dart | true | 200 | 2,942 | import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: UserListScreen(),
);
}
}
class UserListScreen extends StatelessWidget ... | 5 |
ThomasHandlag/audiopc | 41caa76 | lib/audopc_helper.dart | Dart | www.github.com/ThomasHandlag/audiopc/tree/main/lib/audopc_helper.dart | https://raw.githubusercontent.com/ThomasHandlag/audiopc/41caa76/lib/audopc_helper.dart | ThomasHandlag/audiopc 41caa76 lib/audopc_helper.dart | true | 200 | 2,195 | import 'dart:async';
import 'package:flutter/scheduler.dart';
abstract class PlayerListener {
void stop();
void start();
void pause();
Future<void> call();
}
abstract class FrameCallBackUpdater {
FrameCallBackUpdater();
/// callback function to be called when the frame is ready
/// [timeStamp] is the ... | 7 |
Vegamilo/mobile | 376651b | Lab6/lab6/lib/book_page.dart | Dart | www.github.com/Vegamilo/mobile/tree/main/Lab6/lab6/lib/book_page.dart | https://raw.githubusercontent.com/Vegamilo/mobile/376651b/Lab6/lab6/lib/book_page.dart | Vegamilo/mobile 376651b Lab6/lab6/lib/book_page.dart | true | 200 | 463 | import 'package:flutter/material.dart';
import 'book.dart';
class BookPage extends StatelessWidget {
final Book book;
const BookPage({Key? key, required this.book}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(book.title)),
body... | 6 |
mablds/tic_tac_toe_app | eefe656 | test/widget_test.dart | Dart | www.github.com/mablds/tic_tac_toe_app/tree/main/test/widget_test.dart | https://raw.githubusercontent.com/mablds/tic_tac_toe_app/eefe656/test/widget_test.dart | mablds/tic_tac_toe_app eefe656 test/widget_test.dart | true | 200 | 875 | import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:tic_tac_toe_app/main.dart';
void main() {
group(
'Tic tac toe widget tests',
() {
testWidgets('Should render the initial game screen',
(WidgetTester tester) async {
await tester.pu... | 1 |
aryankr04/my_school_app | 1730856 | lib/features/manage_school/widgets/subject_card.dart | Dart | www.github.com/aryankr04/my_school_app/tree/main/lib/features/manage_school/widgets/subject_card.dart | https://raw.githubusercontent.com/aryankr04/my_school_app/1730856/lib/features/manage_school/widgets/subject_card.dart | aryankr04/my_school_app 1730856 lib/features/manage_school/widgets/subject_card.dart | true | 200 | 2,260 |
import 'package:flutter/material.dart';
import '../../../../../utils/constants/dynamic_colors.dart';
import '../../../../../utils/constants/sizes.dart';
class SubjectCard extends StatelessWidget {
final String subject;
final IconData iconData; // Add this line
final VoidCallback? onDelete;
SubjectCard({
... | 2 |
manuelzzz/flutter_metatube | 5bff3ac | lib/app/ui/widgets/metatube_text_field.dart | Dart | www.github.com/manuelzzz/flutter_metatube/tree/main/lib/app/ui/widgets/metatube_text_field.dart | https://raw.githubusercontent.com/manuelzzz/flutter_metatube/5bff3ac/lib/app/ui/widgets/metatube_text_field.dart | manuelzzz/flutter_metatube 5bff3ac lib/app/ui/widgets/metatube_text_field.dart | true | 200 | 2,219 | import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:metatube/app/ui/widgets/metatube_icon_button.dart';
import 'package:metatube/app/utils/app_theme.dart';
import 'package:metatube/app/utils/snackbar_utils.dart';
class MetatubeTextField extends StatefulWidget {
final int m... | 4 |
3AliMohamed/Genearal-House-Service-Clients | 090ce35 | lib/data_layer/repository/delete_item_from_cart_repository.dart | Dart | www.github.com/3AliMohamed/Genearal-House-Service-Clients/tree/main/lib/data_layer/repository/delete_item_from_cart_repository.dart | https://raw.githubusercontent.com/3AliMohamed/Genearal-House-Service-Clients/090ce35/lib/data_layer/repository/delete_item_from_cart_repository.dart | 3AliMohamed/Genearal-House-Service-Clients 090ce35 lib/data_layer/repository/delete_item_from_cart_repository.dart | true | 200 | 1,008 | import 'dart:convert';
import 'package:date_format/date_format.dart';
import 'package:general_house_service_clients/data_layer/web_services/delete_item_from_cart_web_services.dart';
class DeleteItemFromCartRepository{
static final DeleteItemFromCartRepository _singleton = DeleteItemFromCartRepository._internal();
... | 3 |
AdhamAlgohary/amazon_clone_app | 1900db9 | lib/injection_container.dart | Dart | www.github.com/AdhamAlgohary/amazon_clone_app/tree/main/lib/injection_container.dart | https://raw.githubusercontent.com/AdhamAlgohary/amazon_clone_app/1900db9/lib/injection_container.dart | AdhamAlgohary/amazon_clone_app 1900db9 lib/injection_container.dart | true | 200 | 1,776 | import 'package:amazon_clone_app/core/core_import_packages.dart';
import 'package:amazon_clone_app/features/auth/domain/domain_import_packages.dart';
import 'package:amazon_clone_app/features/auth/presentation/presentation_import_packages.dart';
import 'package:amazon_clone_app/features/auth/data/data_import_packages.d... | 0 |
mdarif3499/Hr-App | 7126030 | lib/view/profile/view/educational_info_edit_screen.dart | Dart | www.github.com/mdarif3499/Hr-App/tree/main/lib/view/profile/view/educational_info_edit_screen.dart | https://raw.githubusercontent.com/mdarif3499/Hr-App/7126030/lib/view/profile/view/educational_info_edit_screen.dart | mdarif3499/Hr-App 7126030 lib/view/profile/view/educational_info_edit_screen.dart | true | 200 | 30,283 | import 'dart:convert';
import 'dart:developer';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:get/get.dart';
import 'package:get/get_core/src/get_main.dart';
import 'package:logger/logger.dart';
import '../../../contro... | 5 |
cla002/flutter_rider | d09c8a2 | lib/screens/main_screen.dart | Dart | www.github.com/cla002/flutter_rider/tree/main/lib/screens/main_screen.dart | https://raw.githubusercontent.com/cla002/flutter_rider/d09c8a2/lib/screens/main_screen.dart | cla002/flutter_rider d09c8a2 lib/screens/main_screen.dart | true | 200 | 3,257 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:persistent_bottom_nav_bar/persistent_tab_view.dart';
import 'package:seller/screens/account_screen.dart';
import 'package:seller/screens/dashboard_screen.dart';
import 'package:seller/screens/deliveries_screen.dart';
... | 7 |
Maadez/iDonate-Life-Mobile-App-Side | 9731b33 | lib/core/features/report/domain/usecases/post_a_report_on_request.dart | Dart | www.github.com/Maadez/iDonate-Life-Mobile-App-Side/tree/main/lib/core/features/report/domain/usecases/post_a_report_on_request.dart | https://raw.githubusercontent.com/Maadez/iDonate-Life-Mobile-App-Side/9731b33/lib/core/features/report/domain/usecases/post_a_report_on_request.dart | Maadez/iDonate-Life-Mobile-App-Side 9731b33 lib/core/features/report/domain/usecases/post_a_report_on_request.dart | true | 200 | 784 | import 'package:fpdart/fpdart.dart';
import 'package:myapp/core/error/failure.dart';
import 'package:myapp/core/features/report/domain/entities/report.dart';
import 'package:myapp/core/features/report/domain/repository/report_repository.dart';
import 'package:myapp/core/usecase/usecase.dart';
class PostAReportOnReque... | 1 |
Harshit5691/emApp | 6048a13 | lib/airway_page.dart | Dart | www.github.com/Harshit5691/emApp/tree/main/lib/airway_page.dart | https://raw.githubusercontent.com/Harshit5691/emApp/6048a13/lib/airway_page.dart | Harshit5691/emApp 6048a13 lib/airway_page.dart | true | 200 | 10,172 | import 'package:flutter/material.dart';
import 'package:myapp/breathing_page.dart';
import 'package:supabase_flutter/supabase_flutter.dart';
class AirwayPage extends StatefulWidget {
final String username;
final String password;
final String home;
final String health_facility;
final String public_place;
fi... | 6 |
wc-enterprises/temp2 | 1574e8a | lib/widgets/address_button.dart | Dart | www.github.com/wc-enterprises/temp2/tree/main/lib/widgets/address_button.dart | https://raw.githubusercontent.com/wc-enterprises/temp2/1574e8a/lib/widgets/address_button.dart | wc-enterprises/temp2 1574e8a lib/widgets/address_button.dart | true | 200 | 945 | import 'package:flutter/material.dart';
class AddressButton extends StatefulWidget {
String name;
VoidCallback onPressed;
AddressButton({required this.name, required this.onPressed});
@override
State<AddressButton> createState() => _AddressButtonState();
}
class _AddressButtonState extends State<AddressBu... | 2 |
chiweliterem/Places | c373794 | lib/reusable/shape_circle.dart | Dart | www.github.com/chiweliterem/Places/tree/main/lib/reusable/shape_circle.dart | https://raw.githubusercontent.com/chiweliterem/Places/c373794/lib/reusable/shape_circle.dart | chiweliterem/Places c373794 lib/reusable/shape_circle.dart | true | 200 | 3,624 | import 'package:flutter/material.dart';
import 'package:flutter_animate/flutter_animate.dart';
import 'package:places/colors/colors.dart';
import 'package:places/reusable/label.dart';
import 'package:places/view_model/navigation_view_model.dart';
import 'package:provider/provider.dart';
class ShapeCircle extends State... | 4 |
JittabunSagganayok/grammick_last | b6722f5 | lib/components/home/weLinkComponents/weRentComponents/weRentCallCar/weRentRideBegan.dart | Dart | www.github.com/JittabunSagganayok/grammick_last/tree/main/lib/components/home/weLinkComponents/weRentComponents/weRentCallCar/weRentRideBegan.dart | https://raw.githubusercontent.com/JittabunSagganayok/grammick_last/b6722f5/lib/components/home/weLinkComponents/weRentComponents/weRentCallCar/weRentRideBegan.dart | JittabunSagganayok/grammick_last b6722f5 lib/components/home/weLinkComponents/weRentComponents/weRentCallCar/weRentRideBegan.dart | true | 200 | 5,407 | import 'package:flutter/material.dart';
import 'package:flutter_polyline_points/flutter_polyline_points.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:we_link/components/home/weLinkComponents/rideComponents/infowindow/custom_info_window.dart';
import 'package:we_link/components/ho... | 3 |
Bhavana-discovery/weather_application | 0aa179b | lib/main.dart | Dart | www.github.com/Bhavana-discovery/weather_application/tree/main/lib/main.dart | https://raw.githubusercontent.com/Bhavana-discovery/weather_application/0aa179b/lib/main.dart | Bhavana-discovery/weather_application 0aa179b lib/main.dart | true | 200 | 564 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:weather_app_flutter/screens/home_screen.dart';
import 'bloc/weather_bloc_bloc.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@... | 0 |
Umar888/customer360 | 91e972c | lib/intermediate_widgets/credit_card_widget/views/credit_card_form.dart | Dart | www.github.com/Umar888/customer360/tree/main/lib/intermediate_widgets/credit_card_widget/views/credit_card_form.dart | https://raw.githubusercontent.com/Umar888/customer360/91e972c/lib/intermediate_widgets/credit_card_widget/views/credit_card_form.dart | Umar888/customer360 91e972c lib/intermediate_widgets/credit_card_widget/views/credit_card_form.dart | true | 200 | 62,408 | import 'dart:async';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:gc_customer_app/bloc/cart_bloc/cart_bloc.dart';
import 'package:gc_customer_app/common_widgets/state_city_picker/csc_picker.dart';
import 'package:gc_customer_app... | 5 |
Alay2407/online-grocery-shopping-master | 5a0b2f9 | lib/api/models/signup_request.dart | Dart | www.github.com/Alay2407/online-grocery-shopping-master/tree/main/lib/api/models/signup_request.dart | https://raw.githubusercontent.com/Alay2407/online-grocery-shopping-master/5a0b2f9/lib/api/models/signup_request.dart | Alay2407/online-grocery-shopping-master 5a0b2f9 lib/api/models/signup_request.dart | true | 200 | 474 | import 'package:json_annotation/json_annotation.dart';
part 'signup_request.g.dart';
@JsonSerializable()
class SignupRequest {
String? name;
String? email;
String? password;
String? confirmPassword;
SignupRequest(
this.name,
this.email,
this.password,
this.confirmPassword,
);
factory Sig... | 7 |
khushalikalkani/bigmart | 9a6a5cf | lib/View/PaymentScreen/cash.dart | Dart | www.github.com/khushalikalkani/bigmart/tree/main/lib/View/PaymentScreen/cash.dart | https://raw.githubusercontent.com/khushalikalkani/bigmart/9a6a5cf/lib/View/PaymentScreen/cash.dart | khushalikalkani/bigmart 9a6a5cf lib/View/PaymentScreen/cash.dart | true | 200 | 347 | import 'package:flutter/material.dart';
class Cash extends StatefulWidget {
const Cash({super.key});
@override
State<Cash> createState() => _CashState();
}
class _CashState extends State<Cash> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text('cas... | 1 |
AriefSaiber/Simple_Train_Ticket_Booking | 8135059 | lib/model/trainbooking/seat_select_mdl.dart | Dart | www.github.com/AriefSaiber/Simple_Train_Ticket_Booking/tree/main/lib/model/trainbooking/seat_select_mdl.dart | https://raw.githubusercontent.com/AriefSaiber/Simple_Train_Ticket_Booking/8135059/lib/model/trainbooking/seat_select_mdl.dart | AriefSaiber/Simple_Train_Ticket_Booking 8135059 lib/model/trainbooking/seat_select_mdl.dart | true | 200 | 201 | import 'package:intl/intl.dart';
class seatMdl {
static List<String> times = [
'08:00 AM',
'10:00 AM',
'12:00 PM',
'02:00 PM',
'04:00 PM',
'06:00 PM',
'08:00 PM',
];
}
| 6 |
Masilamani-MP/learning-reverpod | 1c8cbe8 | lib/home_page.dart | Dart | www.github.com/Masilamani-MP/learning-reverpod/tree/main/lib/home_page.dart | https://raw.githubusercontent.com/Masilamani-MP/learning-reverpod/1c8cbe8/lib/home_page.dart | Masilamani-MP/learning-reverpod 1c8cbe8 lib/home_page.dart | true | 200 | 2,395 |
import 'dart:ffi';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:geocoding/geocoding.dart';
import 'package:geolocator/geolocator.dart';
import 'package:reverpod/second_page.dart';
import 'main.dart';
class ... | 2 |
bidur0123/flutter_bloc_clean_architecture | b5bac99 | lib/features/authentication/presentation/pages/auth/verify_email.dart | Dart | www.github.com/bidur0123/flutter_bloc_clean_architecture/tree/main/lib/features/authentication/presentation/pages/auth/verify_email.dart | https://raw.githubusercontent.com/bidur0123/flutter_bloc_clean_architecture/b5bac99/lib/features/authentication/presentation/pages/auth/verify_email.dart | bidur0123/flutter_bloc_clean_architecture b5bac99 lib/features/authentication/presentation/pages/auth/verify_email.dart | true | 200 | 2,826 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:authentication/features/authentication/presentation/pages/home.dart';
import '../../bloc/authentication/auth_bloc.dart';
class VerifyEmail extends StatefulWidget {
const VerifyEmail({Key? key}) : super(key: key);... | 4 |
donna6355/flutterstudy | 2c90f11 | my_player/lib/blocs/logic/cubit/internet_cubit.dart | Dart | www.github.com/donna6355/flutterstudy/tree/main/my_player/lib/blocs/logic/cubit/internet_cubit.dart | https://raw.githubusercontent.com/donna6355/flutterstudy/2c90f11/my_player/lib/blocs/logic/cubit/internet_cubit.dart | donna6355/flutterstudy 2c90f11 my_player/lib/blocs/logic/cubit/internet_cubit.dart | true | 200 | 1,190 | import 'dart:async';
import 'package:connectivity_plus/connectivity_plus.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:meta/meta.dart';
part 'internet_state.dart';
class InternetCubit extends Cubit<InternetState> {
InternetCubit({required this.connectivity}) : super(InternetInitial()) {
... | 3 |
SamarthMovaliya/Currency_Converter_App_flutter | 99e9fd2 | lib/Views/Screens/CurrentRateScreen.dart | Dart | www.github.com/SamarthMovaliya/Currency_Converter_App_flutter/tree/main/lib/Views/Screens/CurrentRateScreen.dart | https://raw.githubusercontent.com/SamarthMovaliya/Currency_Converter_App_flutter/99e9fd2/lib/Views/Screens/CurrentRateScreen.dart | SamarthMovaliya/Currency_Converter_App_flutter 99e9fd2 lib/Views/Screens/CurrentRateScreen.dart | true | 200 | 379 | import 'package:flutter/material.dart';
class CurrentRateScreen extends StatefulWidget {
const CurrentRateScreen({Key? key}) : super(key: key);
@override
State<CurrentRateScreen> createState() => _CurrentRateScreenState();
}
class _CurrentRateScreenState extends State<CurrentRateScreen> {
@override
Widget ... | 5 |
DanielG158/nomor3 | e489759 | lib/main.dart | Dart | www.github.com/DanielG158/nomor3/tree/main/lib/main.dart | https://raw.githubusercontent.com/DanielG158/nomor3/e489759/lib/main.dart | DanielG158/nomor3 e489759 lib/main.dart | true | 200 | 2,576 | import 'package:flutter/material.dart';
void main() => runApp(LoginApp());
class LoginApp extends StatefulWidget {
@override
_LoginAppState createState() => _LoginAppState();
}
class _LoginAppState extends State<LoginApp> {
String _username = '';
String _password = '';
String _status = '';
final Map<Str... | 0 |
ethanoic/fluui-chakra | 8237ed6 | packages/fluui_chakra/lib/disclosure/accordion/accordion_content.dart | Dart | www.github.com/ethanoic/fluui-chakra/tree/main/packages/fluui_chakra/lib/disclosure/accordion/accordion_content.dart | https://raw.githubusercontent.com/ethanoic/fluui-chakra/8237ed6/packages/fluui_chakra/lib/disclosure/accordion/accordion_content.dart | ethanoic/fluui-chakra 8237ed6 packages/fluui_chakra/lib/disclosure/accordion/accordion_content.dart | true | 200 | 1,260 | import 'package:flutter/material.dart';
class AccordionContent extends StatefulWidget {
const AccordionContent({
super.key,
required this.child,
required this.isOpened,
});
final Widget child;
final bool isOpened;
@override
State<AccordionContent> createState() => _AccordionContentState();
}
... | 7 |
Owlsome001/Invex | b5f26c2 | lib/screens/general_widgets/login_container_one.dart | Dart | www.github.com/Owlsome001/Invex/tree/main/lib/screens/general_widgets/login_container_one.dart | https://raw.githubusercontent.com/Owlsome001/Invex/b5f26c2/lib/screens/general_widgets/login_container_one.dart | Owlsome001/Invex b5f26c2 lib/screens/general_widgets/login_container_one.dart | true | 200 | 884 | import 'dart:io';
import 'package:flutter/material.dart';
import 'package:sim/screens/general_widgets/sim_logo_card.dart';
class LoginContainerOne extends StatelessWidget {
const LoginContainerOne({super.key});
@override
Widget build(BuildContext context) {
return Expanded(
flex: 4,
child: Con... | 1 |
Matheus-Zauza-Maschietto/Van-Tracker | a22d68a | lib/screens/cadastro_screen.dart | Dart | www.github.com/Matheus-Zauza-Maschietto/Van-Tracker/tree/main/lib/screens/cadastro_screen.dart | https://raw.githubusercontent.com/Matheus-Zauza-Maschietto/Van-Tracker/a22d68a/lib/screens/cadastro_screen.dart | Matheus-Zauza-Maschietto/Van-Tracker a22d68a lib/screens/cadastro_screen.dart | true | 200 | 2,825 | import 'package:flutter/material.dart';
import 'package:untitled/models/user.dart';
import 'package:untitled/memory_db.dart';
import 'package:untitled/repositories/user_repository.dart';
import 'package:untitled/screens/login_screen.dart';
import 'package:untitled/services/user-service.dart';
class CadastroScreen exte... | 2 |
Ebadzmn/TaskApp | dc5009d | lib/ui/screen/add_new_task_screen.dart | Dart | www.github.com/Ebadzmn/TaskApp/tree/main/lib/ui/screen/add_new_task_screen.dart | https://raw.githubusercontent.com/Ebadzmn/TaskApp/dc5009d/lib/ui/screen/add_new_task_screen.dart | Ebadzmn/TaskApp dc5009d lib/ui/screen/add_new_task_screen.dart | true | 200 | 6,035 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import '../../data/services/network_caller.dart';
import '../../data/utils/urls.dart';
import '../../widgets/background_screen.dart';
import '../../widgets/show_snackber_message.dart';
import '../../widgets/task_manager_app_bar.dart';
cl... | 6 |
Geet-project/JobSeeker | dbc9760 | lib/app/modules/verifyemail/views/VerifyEmailScreen.dart | Dart | www.github.com/Geet-project/JobSeeker/tree/main/lib/app/modules/verifyemail/views/VerifyEmailScreen.dart | https://raw.githubusercontent.com/Geet-project/JobSeeker/dbc9760/lib/app/modules/verifyemail/views/VerifyEmailScreen.dart | Geet-project/JobSeeker dbc9760 lib/app/modules/verifyemail/views/VerifyEmailScreen.dart | true | 200 | 5,178 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter/src/widgets/framework.dart';
import 'package:flutter_verification_code/flutter_verification_code.dart';
import 'package:get/get.dart';
import 'package:jobprovider/app/core/res... | 4 |
mfirmansyahidris/translation-editor-flutter | 901fbe2 | lib/pages/main/header_section.dart | Dart | www.github.com/mfirmansyahidris/translation-editor-flutter/tree/main/lib/pages/main/header_section.dart | https://raw.githubusercontent.com/mfirmansyahidris/translation-editor-flutter/901fbe2/lib/pages/main/header_section.dart | mfirmansyahidris/translation-editor-flutter 901fbe2 lib/pages/main/header_section.dart | true | 200 | 2,812 | import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:msq_translation_editor/msq_translation_editor.dart';
class HeaderSection extends StatelessWidget {
final Function(String)? onSearch;
final VoidCallback? onAdd;
HeaderSection({super.key, this.onSear... | 3 |
Reynald17/aliyah-mobile---Example | 3a75000 | lib/src/modules/edukasi_kesehatan/presentation/bloc/youtube_player_bloc.dart | Dart | www.github.com/Reynald17/aliyah-mobile---Example/tree/main/lib/src/modules/edukasi_kesehatan/presentation/bloc/youtube_player_bloc.dart | https://raw.githubusercontent.com/Reynald17/aliyah-mobile---Example/3a75000/lib/src/modules/edukasi_kesehatan/presentation/bloc/youtube_player_bloc.dart | Reynald17/aliyah-mobile---Example 3a75000 lib/src/modules/edukasi_kesehatan/presentation/bloc/youtube_player_bloc.dart | true | 200 | 963 | import 'package:aliyah_mobile/src/core/extension/string_ext.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:youtube_player_flutter/youtube_player_flutter.dart';
part 'youtube_player_event.dart';
part 'youtube_player_state.dart';
part ... | 7 |
cecahn/Cookit | 23950f3 | app/lib/Widgets/expansion_tile_text.dart | Dart | www.github.com/cecahn/Cookit/tree/main/app/lib/Widgets/expansion_tile_text.dart | https://raw.githubusercontent.com/cecahn/Cookit/23950f3/app/lib/Widgets/expansion_tile_text.dart | cecahn/Cookit 23950f3 app/lib/Widgets/expansion_tile_text.dart | true | 200 | 593 | import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import '../../Constants/Utils/color_constant.dart';
class ExpansionTileText extends StatelessWidget {
double size;
final String text;
ExpansionTileText({Key? key,
this.size = 18,
required this.text,
}) ... | 0 |
kenken513/Guchi_Memo | 307c473 | lib/repository/shared_preference_repository.dart | Dart | www.github.com/kenken513/Guchi_Memo/tree/main/lib/repository/shared_preference_repository.dart | https://raw.githubusercontent.com/kenken513/Guchi_Memo/307c473/lib/repository/shared_preference_repository.dart | kenken513/Guchi_Memo 307c473 lib/repository/shared_preference_repository.dart | true | 200 | 1,302 | import 'package:flutter_guchi_memo/common/shared_preference_key.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:shared_preferences/shared_preferences.dart';
final sharedPreferenceRepositoryProvider =
Provider<SharedPreferenceRepository>((_) => throw UnimplementedError());
class SharedP... | 5 |
DuncanRV8/DIN | 20f4f6b | prac4_drv/lib/screen/home_screen.dart | Dart | www.github.com/DuncanRV8/DIN/tree/main/prac4_drv/lib/screen/home_screen.dart | https://raw.githubusercontent.com/DuncanRV8/DIN/20f4f6b/prac4_drv/lib/screen/home_screen.dart | DuncanRV8/DIN 20f4f6b prac4_drv/lib/screen/home_screen.dart | true | 200 | 438 | import 'package:flutter/material.dart';
import 'load_data.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({Key? key}) : super(key: key);
@override
_HomeScreenState createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
@override
Widget build(BuildContext... | 1 |
BaberHashmi512/laundry_app | e46dcec | lib/Widgets/AddPayPalWidgets/pay_pal_widget.dart | Dart | www.github.com/BaberHashmi512/laundry_app/tree/main/lib/Widgets/AddPayPalWidgets/pay_pal_widget.dart | https://raw.githubusercontent.com/BaberHashmi512/laundry_app/e46dcec/lib/Widgets/AddPayPalWidgets/pay_pal_widget.dart | BaberHashmi512/laundry_app e46dcec lib/Widgets/AddPayPalWidgets/pay_pal_widget.dart | true | 200 | 2,638 | import 'package:flutter/material.dart';
class PayPalWidget extends StatefulWidget {
const PayPalWidget({super.key});
@override
State<PayPalWidget> createState() => _PayPalWidgetState();
}
class _PayPalWidgetState extends State<PayPalWidget> {
@override
Widget build(BuildContext context) {
return Contai... | 2 |
nimousy/pay_parking | 36d2a98 | lib/credit_debit.dart | Dart | www.github.com/nimousy/pay_parking/tree/main/lib/credit_debit.dart | https://raw.githubusercontent.com/nimousy/pay_parking/36d2a98/lib/credit_debit.dart | nimousy/pay_parking 36d2a98 lib/credit_debit.dart | true | 200 | 5,862 | import 'package:flutter/material.dart';
import 'payment.dart';
class CreditDebitPage extends StatefulWidget {
@override
_CreditDebitPageState createState() => _CreditDebitPageState();
}
class _CreditDebitPageState extends State<CreditDebitPage> {
List<String> cardDetails = [];
bool setAsDefault = false;
@o... | 6 |
javedmughal-058/ingredient_recognizer_in_flutter | dbf27cd | lib/view/screens/bottom_bar.dart | Dart | www.github.com/javedmughal-058/ingredient_recognizer_in_flutter/tree/main/lib/view/screens/bottom_bar.dart | https://raw.githubusercontent.com/javedmughal-058/ingredient_recognizer_in_flutter/dbf27cd/lib/view/screens/bottom_bar.dart | javedmughal-058/ingredient_recognizer_in_flutter dbf27cd lib/view/screens/bottom_bar.dart | true | 200 | 4,534 | import 'dart:developer';
import 'package:floating_bottom_bar/animated_bottom_navigation_bar.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:image_picker/image_picker.dart';
import 'package:ingredient_recognizer_in_flutter/controller/base_controller.dart';
import 'package:in... | 3 |
IndieDev2003/VideoConfrence | 1d9b2d5 | test/features/meeting/domain/entities/participant_test.dart | Dart | www.github.com/IndieDev2003/VideoConfrence/tree/main/test/features/meeting/domain/entities/participant_test.dart | https://raw.githubusercontent.com/IndieDev2003/VideoConfrence/1d9b2d5/test/features/meeting/domain/entities/participant_test.dart | IndieDev2003/VideoConfrence 1d9b2d5 test/features/meeting/domain/entities/participant_test.dart | true | 200 | 5,275 | // Dart imports:
import 'dart:convert';
// Package imports:
import 'package:flutter_test/flutter_test.dart';
// Project imports:
import 'package:waterbus/features/auth/domain/entities/user.dart';
import 'package:waterbus/features/meeting/domain/entities/meeting_role.dart';
import 'package:waterbus/features/meeting/do... | 4 |
hawariMuflihMunte/myMobileProject | b5b044c | lib/src/Button.dart | Dart | www.github.com/hawariMuflihMunte/myMobileProject/tree/main/lib/src/Button.dart | https://raw.githubusercontent.com/hawariMuflihMunte/myMobileProject/b5b044c/lib/src/Button.dart | hawariMuflihMunte/myMobileProject b5b044c lib/src/Button.dart | true | 200 | 925 | import 'package:flutter/material.dart';
// Creating Stateless Widget for buttons
class Button extends StatelessWidget {
final color;
final textColor;
final String? buttonText;
final buttonTapped;
Button({
this.color,
this.textColor,
this.buttonText,
this.buttonTapped
});
@override
Wid... | 7 |
SuDiCodeDao/net_stream | 8d4af73 | lib/config/theme/theme.dart | Dart | www.github.com/SuDiCodeDao/net_stream/tree/main/lib/config/theme/theme.dart | https://raw.githubusercontent.com/SuDiCodeDao/net_stream/8d4af73/lib/config/theme/theme.dart | SuDiCodeDao/net_stream 8d4af73 lib/config/theme/theme.dart | true | 200 | 2,776 | import 'package:flutter/material.dart';
import 'package:net_stream/config/theme/widgets_theme/appbar_theme.dart';
import 'package:net_stream/config/theme/widgets_theme/bottom_sheet_theme.dart';
import 'package:net_stream/config/theme/widgets_theme/dialog_theme.dart';
import 'package:net_stream/config/theme/widgets_them... | 0 |
paul019/integration_bee_helper | 864c45f | lib/services/agenda_items_service/agenda_items_service.dart | Dart | www.github.com/paul019/integration_bee_helper/tree/main/lib/services/agenda_items_service/agenda_items_service.dart | https://raw.githubusercontent.com/paul019/integration_bee_helper/864c45f/lib/services/agenda_items_service/agenda_items_service.dart | paul019/integration_bee_helper 864c45f lib/services/agenda_items_service/agenda_items_service.dart | true | 200 | 4,120 | import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:integration_bee_helper/models/agenda_item_model/active_agenda_item_wrapper.dart';
import 'package:integration_bee_helper/models/agenda_item_model/agenda_item_model.dart';
import 'package:integration... | 5 |
YakubuLute/buyghana | e7f779e | client/mobile_app/lib/src/auth/presentation/views/reset_password_screen.dart | Dart | www.github.com/YakubuLute/buyghana/tree/main/client/mobile_app/lib/src/auth/presentation/views/reset_password_screen.dart | https://raw.githubusercontent.com/YakubuLute/buyghana/e7f779e/client/mobile_app/lib/src/auth/presentation/views/reset_password_screen.dart | YakubuLute/buyghana e7f779e client/mobile_app/lib/src/auth/presentation/views/reset_password_screen.dart | true | 200 | 1,281 | import 'package:buyghana/core/common/widgets/app_bar_bottom.dart';
import 'package:buyghana/core/extensions/text_style_extensions.dart';
import 'package:buyghana/core/res/styles/text.dart';
import 'package:buyghana/src/auth/presentation/widgets/reset_password_form.dart';
import 'package:flutter/material.dart';
import '... | 1 |
Maheresio/Inspiration_App_Ui | caf82b2 | lib/view/widgets/best_design_card.dart | Dart | www.github.com/Maheresio/Inspiration_App_Ui/tree/main/lib/view/widgets/best_design_card.dart | https://raw.githubusercontent.com/Maheresio/Inspiration_App_Ui/caf82b2/lib/view/widgets/best_design_card.dart | Maheresio/Inspiration_App_Ui caf82b2 lib/view/widgets/best_design_card.dart | true | 200 | 1,710 | import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class BestDesignCard extends StatelessWidget {
const BestDesignCard({super.key});
@override
Widget build(BuildContext context) {
final deviceHeight = .97.sh;
return Expanded(
flex: 0,
... | 2 |
Sandippuri/major_teacher | 57ce543 | lib/features/internalmarksubmission/models/internal_marks_record.dart | Dart | www.github.com/Sandippuri/major_teacher/tree/main/lib/features/internalmarksubmission/models/internal_marks_record.dart | https://raw.githubusercontent.com/Sandippuri/major_teacher/57ce543/lib/features/internalmarksubmission/models/internal_marks_record.dart | Sandippuri/major_teacher 57ce543 lib/features/internalmarksubmission/models/internal_marks_record.dart | true | 200 | 2,359 | class MarksRecord {
int? id;
int? studentId;
int? courseId;
int? marksObtained;
String? remarks;
String? createdAt;
String? updatedAt;
Student? student;
MarksRecord(
{this.id,
this.studentId,
this.courseId,
this.marksObtained,
this.remarks,
this.createdAt,
th... | 6 |
AhmedAli807/note | aacd125 | lib/controller/notes_bloc/notes_bloc.dart | Dart | www.github.com/AhmedAli807/note/tree/main/lib/controller/notes_bloc/notes_bloc.dart | https://raw.githubusercontent.com/AhmedAli807/note/aacd125/lib/controller/notes_bloc/notes_bloc.dart | AhmedAli807/note aacd125 lib/controller/notes_bloc/notes_bloc.dart | true | 200 | 504 | import 'dart:async';
import 'package:bloc/bloc.dart';
import 'package:hive/hive.dart';
import 'package:meta/meta.dart';
import '../../constants.dart';
import '../../model/note_model.dart';
part 'notes_event.dart';
part 'notes_state.dart';
class NotesBloc extends Bloc<NotesEvent, NotesState> {
NotesBloc() : super(... | 3 |
kecians/Covid-Data-Hub | 2b5e052 | lib/Components/MyCard.dart | Dart | www.github.com/kecians/Covid-Data-Hub/tree/main/lib/Components/MyCard.dart | https://raw.githubusercontent.com/kecians/Covid-Data-Hub/2b5e052/lib/Components/MyCard.dart | kecians/Covid-Data-Hub 2b5e052 lib/Components/MyCard.dart | true | 200 | 1,227 | import 'package:flutter/material.dart';
class MyCard extends StatelessWidget {
const MyCard({this.headText,this.height,this.width,this.color,
this.headerSize,this.valueText,this.valueSize,this.headerColor,this.valueColor});
final double height;
final double width;
final Color color,headerColor,valueColor;
... | 4 |
abdullahwaheed12/klomi-airbnbclone-main | 5c35621 | lib/views/hosting/insights/enhanced_cleaning_process/scaffold.dart | Dart | www.github.com/abdullahwaheed12/klomi-airbnbclone-main/tree/main/lib/views/hosting/insights/enhanced_cleaning_process/scaffold.dart | https://raw.githubusercontent.com/abdullahwaheed12/klomi-airbnbclone-main/5c35621/lib/views/hosting/insights/enhanced_cleaning_process/scaffold.dart | abdullahwaheed12/klomi-airbnbclone-main 5c35621 lib/views/hosting/insights/enhanced_cleaning_process/scaffold.dart | true | 200 | 7,360 | import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:klomi/contstant/image_path.dart';
import 'package:klomi/contstant/text_styles.dart';
import 'package:klomi/global_widgets/empty_space_widget.dart';
class EnhancedCleaningProcess extends StatelessWidget {
... | 7 |
jorgepassetti/easy-invoice | 9bccba7 | lib/new_invoice_modal/new_invoice_modal_model.dart | Dart | www.github.com/jorgepassetti/easy-invoice/tree/main/lib/new_invoice_modal/new_invoice_modal_model.dart | https://raw.githubusercontent.com/jorgepassetti/easy-invoice/9bccba7/lib/new_invoice_modal/new_invoice_modal_model.dart | jorgepassetti/easy-invoice 9bccba7 lib/new_invoice_modal/new_invoice_modal_model.dart | true | 200 | 5,278 | import '/auth/firebase_auth/auth_util.dart';
import '/backend/backend.dart';
import '/backend/schema/structs/index.dart';
import '/components/add_tax/add_tax_widget.dart';
import '/components/new_item/new_item_widget.dart';
import '/flutter_flow/flutter_flow_drop_down.dart';
import '/flutter_flow/flutter_flow_icon_butt... | 5 |
HaithamHussienAleryani/food_hub | d17ba82 | lib/features/Auth/presentation/bloc/auth_event.dart | Dart | www.github.com/HaithamHussienAleryani/food_hub/tree/main/lib/features/Auth/presentation/bloc/auth_event.dart | https://raw.githubusercontent.com/HaithamHussienAleryani/food_hub/d17ba82/lib/features/Auth/presentation/bloc/auth_event.dart | HaithamHussienAleryani/food_hub d17ba82 lib/features/Auth/presentation/bloc/auth_event.dart | true | 200 | 644 | part of 'auth_bloc.dart';
@immutable
sealed class AuthEvent {
const AuthEvent();
}
final class AuthSignUpViaGoogle extends AuthEvent {}
final class AuthGetUserSession extends AuthEvent {}
final class AuthSignUpViaEmailAndPassword extends AuthEvent {
final String email;
final String password;
final String na... | 0 |
muhammadarslanapax/brainwave-mobile-app | 504b291 | lib/di_container.dart | Dart | www.github.com/muhammadarslanapax/brainwave-mobile-app/tree/main/lib/di_container.dart | https://raw.githubusercontent.com/muhammadarslanapax/brainwave-mobile-app/504b291/lib/di_container.dart | muhammadarslanapax/brainwave-mobile-app 504b291 lib/di_container.dart | true | 200 | 1,095 | import 'package:aichat/provider/CategoryController.dart';
import 'package:aichat/View/Screens/stores/AIChatStore.dart';
import 'package:aichat/provider/SubscriptionProvider.dart';
import 'package:aichat/provider/ProfileProvider.dart';
import 'package:aichat/provider/theme_provider.dart';
import 'package:connectivity/co... | 1 |
input-output-hk/catalyst-voices | c437b00 | catalyst_voices/apps/voices/integration_test/pageobject/onboarding/create_flow/step_14_keychain_final.dart | Dart | www.github.com/input-output-hk/catalyst-voices/tree/main/catalyst_voices/apps/voices/integration_test/pageobject/onboarding/create_flow/step_14_keychain_final.dart | https://raw.githubusercontent.com/input-output-hk/catalyst-voices/c437b00/catalyst_voices/apps/voices/integration_test/pageobject/onboarding/create_flow/step_14_keychain_final.dart | input-output-hk/catalyst-voices c437b00 catalyst_voices/apps/voices/integration_test/pageobject/onboarding/create_flow/step_14_keychain_final.dart | true | 200 | 2,694 | import 'package:catalyst_voices_assets/catalyst_voices_assets.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import '../../../utils/translations_utils.dart';
import '../onboarding_base_page.dart';
import 'step_13_password_input.dart';
class KeychainFinalPanel extends O... | 2 |
ngtphat-towa/Project-Fundamental-Topics | bfa2dc7 | grocery_pos/lib/presentation/contacts/suppliers/supplier_form/bloc/supplier_form_event.dart | Dart | www.github.com/ngtphat-towa/Project-Fundamental-Topics/tree/main/grocery_pos/lib/presentation/contacts/suppliers/supplier_form/bloc/supplier_form_event.dart | https://raw.githubusercontent.com/ngtphat-towa/Project-Fundamental-Topics/bfa2dc7/grocery_pos/lib/presentation/contacts/suppliers/supplier_form/bloc/supplier_form_event.dart | ngtphat-towa/Project-Fundamental-Topics bfa2dc7 grocery_pos/lib/presentation/contacts/suppliers/supplier_form/bloc/supplier_form_event.dart | true | 200 | 1,273 | part of 'supplier_form_bloc.dart';
enum SupplierFormType { createNew, edit }
abstract class SupplierFormEvent extends Equatable {
final SupplierModel? model;
final SupplierFormType? type;
const SupplierFormEvent({this.model, this.type});
@override
List<Object?> get props => [];
}
class AddSupplierEvent e... | 6 |
ryugif/gilang-expedisi | a935435 | lib/bloc/timbang/timbang_state.dart | Dart | www.github.com/ryugif/gilang-expedisi/tree/main/lib/bloc/timbang/timbang_state.dart | https://raw.githubusercontent.com/ryugif/gilang-expedisi/a935435/lib/bloc/timbang/timbang_state.dart | ryugif/gilang-expedisi a935435 lib/bloc/timbang/timbang_state.dart | true | 200 | 441 | import 'package:aplikasi_timbang/data/models/timbang.dart';
import 'package:equatable/equatable.dart';
class TimbangState extends Equatable {
const TimbangState();
@override
List<Object?> get props => [];
}
class TimbangLoading extends TimbangState {}
class TimbangLoaded extends TimbangState {
final List<Ti... | 3 |
Prebiusta/bachelor_project | d6a647b | signfluent_phone/lib/src/components/custom_text_button.dart | Dart | www.github.com/Prebiusta/bachelor_project/tree/main/signfluent_phone/lib/src/components/custom_text_button.dart | https://raw.githubusercontent.com/Prebiusta/bachelor_project/d6a647b/signfluent_phone/lib/src/components/custom_text_button.dart | Prebiusta/bachelor_project d6a647b signfluent_phone/lib/src/components/custom_text_button.dart | true | 200 | 570 | import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:signfluent_phone/src/constants.dart';
class CustomTextButton extends StatelessWidget {
final String text;
final VoidCallback onPressed;
const CustomTextButton({Key? key, required this.text, required this.onPressed})... | 7 |
WickedDeveloper4L/advanced-ui-flutter-app | 198b7ac | lib/components/my_drawer.dart | Dart | www.github.com/WickedDeveloper4L/advanced-ui-flutter-app/tree/main/lib/components/my_drawer.dart | https://raw.githubusercontent.com/WickedDeveloper4L/advanced-ui-flutter-app/198b7ac/lib/components/my_drawer.dart | WickedDeveloper4L/advanced-ui-flutter-app 198b7ac lib/components/my_drawer.dart | true | 200 | 1,593 | import 'package:advanced_ui_e_commerce/components/list_tile.dart';
import 'package:flutter/material.dart';
class MyDrawer extends StatelessWidget {
const MyDrawer({super.key});
@override
Widget build(BuildContext context) {
return Drawer(
backgroundColor: Theme.of(context).colorScheme.background,
... | 4 |
qweijiaq/GopherImage-flutter | af2ce84 | lib/user/create/user_create_model.dart | Dart | www.github.com/qweijiaq/GopherImage-flutter/tree/main/lib/user/create/user_create_model.dart | https://raw.githubusercontent.com/qweijiaq/GopherImage-flutter/af2ce84/lib/user/create/user_create_model.dart | qweijiaq/GopherImage-flutter af2ce84 lib/user/create/user_create_model.dart | true | 200 | 795 | import 'dart:convert';
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import '../../app/app_config.dart';
class UserCreateModel extends ChangeNotifier {
Future<int> createUser({
required String name,
required String password,
}) async {
final uri = ... | 0 |
hazalsguler/FlutterToDoApp | e7f55c3 | lib/service/todo_service.dart | Dart | www.github.com/hazalsguler/FlutterToDoApp/tree/main/lib/service/todo_service.dart | https://raw.githubusercontent.com/hazalsguler/FlutterToDoApp/e7f55c3/lib/service/todo_service.dart | hazalsguler/FlutterToDoApp e7f55c3 lib/service/todo_service.dart | true | 200 | 1,321 |
import 'dart:convert';
import '../model/todo.dart';
import 'package:http/http.dart' as http;
class TodoService {
final String url = "https://dummyjson.com/todos/";
final String addUrl = "https://dummyjson.com/todos/add";
Future<List<Todo>> getUncompletedTodos() async {
final response = await http.get(Uri... | 5 |
NanaTutu/pharmacare | 937f6f1 | lib/main.dart | Dart | www.github.com/NanaTutu/pharmacare/tree/main/lib/main.dart | https://raw.githubusercontent.com/NanaTutu/pharmacare/937f6f1/lib/main.dart | NanaTutu/pharmacare 937f6f1 lib/main.dart | true | 200 | 4,062 |
import 'dart:ui';
import 'package:alarm/alarm.dart';
import 'package:android_alarm_manager_plus/android_alarm_manager_plus.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:device_info_plus/device_info_plus.dart';
import 'package:file_picker/file_picker.dart';
import 'package:flutter/mater... | 1 |
milenevi/app_pokedex | 8a2af7c | test/data/repositories/character_repository_impl_test.dart | Dart | www.github.com/milenevi/app_pokedex/tree/main/test/data/repositories/character_repository_impl_test.dart | https://raw.githubusercontent.com/milenevi/app_pokedex/8a2af7c/test/data/repositories/character_repository_impl_test.dart | milenevi/app_pokedex 8a2af7c test/data/repositories/character_repository_impl_test.dart | true | 200 | 3,563 | import 'package:flutter_test/flutter_test.dart';
import 'package:pokedex_app/core/error/failures.dart';
import 'package:pokedex_app/data/datasources/pokemon_api_datasource.dart';
import 'package:pokedex_app/data/models/character_model.dart';
import 'package:pokedex_app/data/repositories/character_repository_impl.dart';... | 2 |
jassi-singh/xpanse | 8228316 | lib/features/transactions/presentation/widgets/transaction_list/transaction_list.dart | Dart | www.github.com/jassi-singh/xpanse/tree/main/lib/features/transactions/presentation/widgets/transaction_list/transaction_list.dart | https://raw.githubusercontent.com/jassi-singh/xpanse/8228316/lib/features/transactions/presentation/widgets/transaction_list/transaction_list.dart | jassi-singh/xpanse 8228316 lib/features/transactions/presentation/widgets/transaction_list/transaction_list.dart | true | 200 | 2,622 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import '../../blocs/add_update_cubit/add_update_cubit.dart';
import '../../blocs/transaction_bloc/transactions_bloc.dart';
import '../month_selector/cubit/month_selector_cubit.dart';
import 'transaction_list_item.dart';
class Tran... | 6 |
WissamKahwaji/machine_test | cb9ada4 | lib/presentation/core/widgets/custom_btn.dart | Dart | www.github.com/WissamKahwaji/machine_test/tree/main/lib/presentation/core/widgets/custom_btn.dart | https://raw.githubusercontent.com/WissamKahwaji/machine_test/cb9ada4/lib/presentation/core/widgets/custom_btn.dart | WissamKahwaji/machine_test cb9ada4 lib/presentation/core/widgets/custom_btn.dart | true | 200 | 972 | import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:machine_test/presentation/core/constants/app_colors.dart';
class CustomButton extends StatelessWidget {
final void Function()? onPressed;
final Size? fixedSize;
final String title;
const CustomB... | 7 |
Ebtehalla/qouti-app | ff5e51e | lib/model/add_to_cart_model.dart | Dart | www.github.com/Ebtehalla/qouti-app/tree/main/lib/model/add_to_cart_model.dart | https://raw.githubusercontent.com/Ebtehalla/qouti-app/ff5e51e/lib/model/add_to_cart_model.dart | Ebtehalla/qouti-app ff5e51e lib/model/add_to_cart_model.dart | true | 200 | 1,026 | // ignore_for_file: prefer_typing_uninitialized_variables, prefer_collection_literals
import 'dart:convert';
class AddtocartModel {
late var productId;
late String title;
late String thumbnail;
late String? color;
late String? size;
var discountPrice;
var oldPrice;
var priceWithAttr;
late int qty;
... | 3 |
137Cenk137/FlutterProject | b3e1f35 | lib/odev4/page_x.dart | Dart | www.github.com/137Cenk137/FlutterProject/tree/main/lib/odev4/page_x.dart | https://raw.githubusercontent.com/137Cenk137/FlutterProject/b3e1f35/lib/odev4/page_x.dart | 137Cenk137/FlutterProject b3e1f35 lib/odev4/page_x.dart | true | 200 | 722 | import 'package:demo_projeler/odev4/page_y.dart';
import 'package:flutter/material.dart';
class PageX extends StatefulWidget {
const PageX({super.key});
@override
State<PageX> createState() => _PageXState();
}
class _PageXState extends State<PageX> {
@override
Widget build(BuildContext context) {
retur... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.