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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
atom808/zip_finder | b017869 | lib/global/services/network_service.dart | Dart | www.github.com/atom808/zip_finder/tree/main/lib/global/services/network_service.dart | https://raw.githubusercontent.com/atom808/zip_finder/b017869/lib/global/services/network_service.dart | atom808/zip_finder b017869 lib/global/services/network_service.dart | true | 200 | 820 | import 'dart:convert';
import 'dart:developer';
import 'package:http/http.dart' as http;
enum HttpMethod { postMethod, getMethod }
class NetworkService {
var client = http.Client();
Future<dynamic> request(String url,
{required HttpMethod method, Map? body}) async {
var response;
final uri = Uri.p... | 1 |
MOHAB28/To-DO | 0296041 | lib/presentation/widgets/text_field_for_date.dart | Dart | www.github.com/MOHAB28/To-DO/tree/main/lib/presentation/widgets/text_field_for_date.dart | https://raw.githubusercontent.com/MOHAB28/To-DO/0296041/lib/presentation/widgets/text_field_for_date.dart | MOHAB28/To-DO 0296041 lib/presentation/widgets/text_field_for_date.dart | true | 200 | 1,131 | import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'custom_text_form_field_builder.dart';
class CustomTextFormFieldBuilderWithWidgetForDate extends CustomTextFormFieldBuilder {
CustomTextFormFieldBuilderWithWidgetForDate({
Key? key,
required TextEditingController controller,
... | 2 |
metal-reigns/weather-app | a379dc1 | lib/domain/entity/current_weather.dart | Dart | www.github.com/metal-reigns/weather-app/tree/main/lib/domain/entity/current_weather.dart | https://raw.githubusercontent.com/metal-reigns/weather-app/a379dc1/lib/domain/entity/current_weather.dart | metal-reigns/weather-app a379dc1 lib/domain/entity/current_weather.dart | true | 200 | 2,112 | import 'package:weather_app/domain/entity/daily_weather.dart';
class CurrentWeather {
final String cityName;
final double temperature;
final String mainDescription;
final String detailedDescription;
final String weatherIcon;
final String condition;
final double feelsLike;
final int humidity;
final do... | 3 |
AbhinavJain1234/expanse_tracker | e55988d | lib/main.dart | Dart | www.github.com/AbhinavJain1234/expanse_tracker/tree/main/lib/main.dart | https://raw.githubusercontent.com/AbhinavJain1234/expanse_tracker/e55988d/lib/main.dart | AbhinavJain1234/expanse_tracker e55988d lib/main.dart | true | 200 | 2,759 | import 'package:flutter/material.dart';
import 'package:expanse_tracker/widgets/expenses.dart';
//import 'package:flutter/services.dart';
var kColorScheme = ColorScheme.fromSeed(
seedColor: const Color.fromARGB(255, 96, 59, 181),
);
var kColorSchemeDark = ColorScheme.fromSeed(
brightness: Brightness.dark,
seedCo... | 7 |
devit7/Flutter-Smart-Transportation-App | f29a9a6 | lib/Model/halte_api_model.dart | Dart | www.github.com/devit7/Flutter-Smart-Transportation-App/tree/main/lib/Model/halte_api_model.dart | https://raw.githubusercontent.com/devit7/Flutter-Smart-Transportation-App/f29a9a6/lib/Model/halte_api_model.dart | devit7/Flutter-Smart-Transportation-App f29a9a6 lib/Model/halte_api_model.dart | true | 200 | 586 | import 'dart:convert';
class HalteApiModel {
String? id;
String? namaHalte;
HalteApiModel({required this.id, required this.namaHalte});
factory HalteApiModel.fromJson(Map<String, dynamic> json) {
//final data = json['data'];
return HalteApiModel(
id: json["id"]?.toString(),
namaHalte: jso... | 4 |
SAMSAMBOLU/Oluwaseun-Rental-Project | fbc5ea2 | lib/screens/profile/profile.dart | Dart | www.github.com/SAMSAMBOLU/Oluwaseun-Rental-Project/tree/main/lib/screens/profile/profile.dart | https://raw.githubusercontent.com/SAMSAMBOLU/Oluwaseun-Rental-Project/fbc5ea2/lib/screens/profile/profile.dart | SAMSAMBOLU/Oluwaseun-Rental-Project fbc5ea2 lib/screens/profile/profile.dart | true | 200 | 7,551 | // ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables
import 'package:flutter/material.dart';
import 'package:renta/screens/complete_profile/complete_profile_screen.dart';
import 'package:renta/screens/profile/Profilepic.dart';
class AccountProfileScreen extends StatelessWidget {
... | 0 |
Usama0444/TennisWorldXI | 7fcfe62 | lib/modules/ScoreBoard/player_graph.dart | Dart | www.github.com/Usama0444/TennisWorldXI/tree/main/lib/modules/ScoreBoard/player_graph.dart | https://raw.githubusercontent.com/Usama0444/TennisWorldXI/7fcfe62/lib/modules/ScoreBoard/player_graph.dart | Usama0444/TennisWorldXI 7fcfe62 lib/modules/ScoreBoard/player_graph.dart | true | 200 | 1,474 | import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_charts/charts.dart';
import 'package:syncfusion_flutter_charts/sparkcharts.dart';
class PlayerGraph extends StatefulWidget {
// ignore: prefer_const_constructors_in_immutables
PlayerGraph({Key? key}) : super(key: key);
@override
Player... | 6 |
Akashpramod/Counter_app | 552a5d6 | lib/home.dart | Dart | www.github.com/Akashpramod/Counter_app/tree/main/lib/home.dart | https://raw.githubusercontent.com/Akashpramod/Counter_app/552a5d6/lib/home.dart | Akashpramod/Counter_app 552a5d6 lib/home.dart | true | 200 | 2,589 | import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createS... | 5 |
irshad800/GeoWeather | 9569bd7 | lib/modules/user/screens/weather_layouts/weather_layout_3.dart | Dart | www.github.com/irshad800/GeoWeather/tree/main/lib/modules/user/screens/weather_layouts/weather_layout_3.dart | https://raw.githubusercontent.com/irshad800/GeoWeather/9569bd7/lib/modules/user/screens/weather_layouts/weather_layout_3.dart | irshad800/GeoWeather 9569bd7 lib/modules/user/screens/weather_layouts/weather_layout_3.dart | true | 200 | 1,988 | import 'package:flutter/material.dart';
import '../../models/weather_model.dart';
class WeatherGridLayout extends StatelessWidget {
final List<WeatherDataa> weatherDataList;
WeatherGridLayout({required this.weatherDataList});
@override
Widget build(BuildContext context) {
return Padding(
padding: ... | 1 |
CiontCristian/Mobile-Business-Elements | c841bb3 | transaction_wallet/lib/model/TransactionObj.dart | Dart | www.github.com/CiontCristian/Mobile-Business-Elements/tree/main/transaction_wallet/lib/model/TransactionObj.dart | https://raw.githubusercontent.com/CiontCristian/Mobile-Business-Elements/c841bb3/transaction_wallet/lib/model/TransactionObj.dart | CiontCristian/Mobile-Business-Elements c841bb3 transaction_wallet/lib/model/TransactionObj.dart | true | 200 | 706 |
class TransactionObj{
int? id;
String recipient;
double amount;
String currency;
TransactionObj(this.id, this.recipient, this.amount, this.currency);
Map<String, dynamic> toMap() {
final map = {
'id': id,
'recipient': recipient,
'amount': amount,
'currency' : currency
};
... | 2 |
sar4silv4/disp_moveis | a2cedc4 | lib/chamadas.dart | Dart | www.github.com/sar4silv4/disp_moveis/tree/main/lib/chamadas.dart | https://raw.githubusercontent.com/sar4silv4/disp_moveis/a2cedc4/lib/chamadas.dart | sar4silv4/disp_moveis a2cedc4 lib/chamadas.dart | true | 200 | 1,456 | // ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables, avoid_print
import 'package:flutter/material.dart';
class Chamadas extends StatelessWidget {
const Chamadas ({super.key});
@override
Widget build(BuildContext context) {
return ListView(
children: [
Lis... | 3 |
HeshamQutb/TEKNOSOFT | 5e4f9db | bmi_calculator/lib/core/services/calculations.dart | Dart | www.github.com/HeshamQutb/TEKNOSOFT/tree/main/bmi_calculator/lib/core/services/calculations.dart | https://raw.githubusercontent.com/HeshamQutb/TEKNOSOFT/5e4f9db/bmi_calculator/lib/core/services/calculations.dart | HeshamQutb/TEKNOSOFT 5e4f9db bmi_calculator/lib/core/services/calculations.dart | true | 200 | 770 | import 'dart:math';
class Calculations {
final int height;
final int weight;
Calculations({required this.height, required this.weight});
double bmi = 0;
String bmiResult() {
bmi = weight / pow(height / 100, 2);
return bmi.toStringAsFixed(1);
}
String resultType() {
if (bmi >= 25) {
r... | 7 |
yongjieYuan/flutter-doc | 5755689 | database/db_provider/inspection_db_provider.dart | Dart | www.github.com/yongjieYuan/flutter-doc/tree/main/database/db_provider/inspection_db_provider.dart | https://raw.githubusercontent.com/yongjieYuan/flutter-doc/5755689/database/db_provider/inspection_db_provider.dart | yongjieYuan/flutter-doc 5755689 database/db_provider/inspection_db_provider.dart | true | 200 | 1,608 | import 'package:chili/chili.dart';
import 'package:sqflite/sqflite.dart';
import 'package:yali_fitness_app/database/database_manager.dart';
import 'package:yali_fitness_app/models/inspection_item.dart';
class InspectionDBProvider {
static final InspectionDBProvider _singleton = InspectionDBProvider._internal();
fa... | 4 |
danishahmed22/finance | 04a0004 | finance_frontend/lib/model/analysis_result.dart | Dart | www.github.com/danishahmed22/finance/tree/main/finance_frontend/lib/model/analysis_result.dart | https://raw.githubusercontent.com/danishahmed22/finance/04a0004/finance_frontend/lib/model/analysis_result.dart | danishahmed22/finance 04a0004 finance_frontend/lib/model/analysis_result.dart | true | 200 | 653 | class AnalysisResult {
final double riskScore;
final String recommendation;
final Map<String, dynamic> detectedPatterns;
final Map<String, dynamic> sentimentAnalysis;
AnalysisResult({
required this.riskScore,
required this.recommendation,
required this.detectedPatterns,
required this.sentimen... | 0 |
BinghamtonRover/Dashboard | 9e76bae | lib/src/data/utils.dart | Dart | www.github.com/BinghamtonRover/Dashboard/tree/main/lib/src/data/utils.dart | https://raw.githubusercontent.com/BinghamtonRover/Dashboard/9e76bae/lib/src/data/utils.dart | BinghamtonRover/Dashboard 9e76bae lib/src/data/utils.dart | true | 200 | 1,101 | import "dart:collection";
import "dart:math";
/// Helpful extensions on maps.
extension MapRecords<K, V> on Map<K, V> {
/// A list of key-value records in this map. Allows easier iteration than [entries].
Iterable<(K, V)> get records sync* {
for (final entry in entries) {
yield (entry.key, entry.value);
... | 6 |
MinhThang03/your_tours_mobile | 3373bf0 | lib/models/responses/home_info_response.dart | Dart | www.github.com/MinhThang03/your_tours_mobile/tree/main/lib/models/responses/home_info_response.dart | https://raw.githubusercontent.com/MinhThang03/your_tours_mobile/3373bf0/lib/models/responses/home_info_response.dart | MinhThang03/your_tours_mobile 3373bf0 lib/models/responses/home_info_response.dart | true | 200 | 7,117 | class GetHomePageResponse {
GetHomePageResponse({
required this.success,
required this.data,
});
bool success;
Data data;
factory GetHomePageResponse.fromJson(Map<String, dynamic> json) =>
GetHomePageResponse(
success: json["success"],
data: Data.fromJson(json["data"]),
)... | 5 |
franelias/moviapp | e6a1d2f | lib/http/api.dart | Dart | www.github.com/franelias/moviapp/tree/main/lib/http/api.dart | https://raw.githubusercontent.com/franelias/moviapp/e6a1d2f/lib/http/api.dart | franelias/moviapp e6a1d2f lib/http/api.dart | true | 200 | 996 | import 'package:dio/dio.dart';
import 'package:moviapp/models/bus_stop.dart';
class BaseAPI {
static String base = "https://ws.rosario.gob.ar/ubicaciones/public";
dynamic client;
BaseAPI() {
client = Dio(BaseOptions(
baseUrl: base,
connectTimeout: const Duration(seconds: 5),
receiveTimeou... | 1 |
RuanRDM/flutterapp | a5ed683 | lib/models/curso.dart | Dart | www.github.com/RuanRDM/flutterapp/tree/main/lib/models/curso.dart | https://raw.githubusercontent.com/RuanRDM/flutterapp/a5ed683/lib/models/curso.dart | RuanRDM/flutterapp a5ed683 lib/models/curso.dart | true | 200 | 286 | class Curso {
int id;
String nome;
String horas;
String descricao;
String autor;
Curso(this.id, this.nome, this.horas, this.descricao, this.autor);
@override
String toString() {
return 'Curso(nome: $nome, horas: $horas, descricao: $descricao, autor: $autor)';
}
} | 2 |
Codexxa-Business-Solution/darkgreen-android | 6d90341 | lib/presentation/get_privacy_policy.dart | Dart | www.github.com/Codexxa-Business-Solution/darkgreen-android/tree/main/lib/presentation/get_privacy_policy.dart | https://raw.githubusercontent.com/Codexxa-Business-Solution/darkgreen-android/6d90341/lib/presentation/get_privacy_policy.dart | Codexxa-Business-Solution/darkgreen-android 6d90341 lib/presentation/get_privacy_policy.dart | true | 200 | 3,758 | import 'package:darkgreen/api_model/settings/get_privcy_policy_response_model.dart';
import 'package:darkgreen/constant/api_constant.dart';
import 'package:darkgreen/constant/color.dart';
import 'package:darkgreen/constant/size_config.dart';
import 'package:flutter/material.dart';
import 'package:flutter_html/flutter_h... | 3 |
abrorFlutter/currency | dc86709 | lib/model/sqflite/sqflite_model.dart | Dart | www.github.com/abrorFlutter/currency/tree/main/lib/model/sqflite/sqflite_model.dart | https://raw.githubusercontent.com/abrorFlutter/currency/dc86709/lib/model/sqflite/sqflite_model.dart | abrorFlutter/currency dc86709 lib/model/sqflite/sqflite_model.dart | true | 200 | 365 |
class LocalModel{
String input;
String result;
LocalModel({required this.input, required this.result});
factory LocalModel.fromJson(Map<String, dynamic> json) {
return LocalModel(
input: json["input"] ?? "0",
result: json["result"] ?? "00"
);
}
toJson() {
return {
"inpu... | 0 |
NathanDraco22/android-keygen | 7a4f59e | lib/modules/android_key/view/keygen_form.dart | Dart | www.github.com/NathanDraco22/android-keygen/tree/main/lib/modules/android_key/view/keygen_form.dart | https://raw.githubusercontent.com/NathanDraco22/android-keygen/7a4f59e/lib/modules/android_key/view/keygen_form.dart | NathanDraco22/android-keygen 7a4f59e lib/modules/android_key/view/keygen_form.dart | true | 200 | 2,789 | part of 'android_keygen_screen.dart';
class KeygenForm extends StatelessWidget{
const KeygenForm({super.key});
@override
Widget build(BuildContext context) {
final formMediator = ViewModel.of(context).formMediator;
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 10),... | 7 |
ak867955/fluxapp | 1968e5d | lib/channelslistpaid.dart | Dart | www.github.com/ak867955/fluxapp/tree/main/lib/channelslistpaid.dart | https://raw.githubusercontent.com/ak867955/fluxapp/1968e5d/lib/channelslistpaid.dart | ak867955/fluxapp 1968e5d lib/channelslistpaid.dart | true | 200 | 2,326 | import 'package:flutter/material.dart';
class clist extends StatelessWidget {
const clist({super.key});
@override
Widget build(BuildContext context) {
final List<Channel> channels = [
Channel(name: "Flutter Dev", iconUrl: "assets/flutter_dev.png"),
Channel(name: "Dart Lang", iconUrl: "assets/... | 6 |
Kanglei-Inovations/kanglei_taxi | 1dcb545 | lib/views/thank_you.dart | Dart | www.github.com/Kanglei-Inovations/kanglei_taxi/tree/main/lib/views/thank_you.dart | https://raw.githubusercontent.com/Kanglei-Inovations/kanglei_taxi/1dcb545/lib/views/thank_you.dart | Kanglei-Inovations/kanglei_taxi 1dcb545 lib/views/thank_you.dart | true | 200 | 4,340 | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:kanglei_taxi/conts/firebase/color_constants.dart';
import 'package:kanglei_taxi/nav_bar.dart';
import 'package:latlong2/latlong.dart';
class TankYou extends StatefulWidget {
final String type;
final String pickupLocation;
final... | 4 |
Fady-Esam/Notes-App | 35830fc | lib/Features/home/data/repos/home_repo_impl.dart | Dart | www.github.com/Fady-Esam/Notes-App/tree/main/lib/Features/home/data/repos/home_repo_impl.dart | https://raw.githubusercontent.com/Fady-Esam/Notes-App/35830fc/lib/Features/home/data/repos/home_repo_impl.dart | Fady-Esam/Notes-App 35830fc lib/Features/home/data/repos/home_repo_impl.dart | true | 200 | 666 | import 'package:dartz/dartz.dart';
import 'package:hive_flutter/hive_flutter.dart';
import 'package:notes_app/Features/home/data/models/note_model.dart';
import 'package:notes_app/Features/home/data/repos/home_repo.dart';
class HomeRepoImpl implements HomeRepo {
@override
Future<Either<String, void>> addNote({requ... | 5 |
TranNgocVy/todo_list | fdbc864 | lib/main.dart | Dart | www.github.com/TranNgocVy/todo_list/tree/main/lib/main.dart | https://raw.githubusercontent.com/TranNgocVy/todo_list/fdbc864/lib/main.dart | TranNgocVy/todo_list fdbc864 lib/main.dart | true | 200 | 17,265 | import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:path/path.dart';
import 'package:sqflite/sqflite.dart';
import 'package:todo_list/addtodo.dart';
import 'package:todo_list/main.dart';
import 'package:todo_list/model/database.dart';
import 'dart:async';
import 'package:todo_list/... | 2 |
s17476/under_control_v2 | 37ec5ab | lib/features/authentication/domain/usecases/signout.dart | Dart | www.github.com/s17476/under_control_v2/tree/main/lib/features/authentication/domain/usecases/signout.dart | https://raw.githubusercontent.com/s17476/under_control_v2/37ec5ab/lib/features/authentication/domain/usecases/signout.dart | s17476/under_control_v2 37ec5ab lib/features/authentication/domain/usecases/signout.dart | true | 200 | 575 | import 'package:dartz/dartz.dart';
import 'package:injectable/injectable.dart';
import '../repositories/authentication_repository.dart';
import '../../../core/usecases/usecase.dart';
import '../../../core/error/failures.dart';
@lazySingleton
class Signout implements FutureUseCase<VoidResult, NoParams> {
final Authe... | 1 |
lllionlll/Bloc_Flutter | 8c92ccd | counter_bloc/lib/presentation/screens/home_screen.dart | Dart | www.github.com/lllionlll/Bloc_Flutter/tree/main/counter_bloc/lib/presentation/screens/home_screen.dart | https://raw.githubusercontent.com/lllionlll/Bloc_Flutter/8c92ccd/counter_bloc/lib/presentation/screens/home_screen.dart | lllionlll/Bloc_Flutter 8c92ccd counter_bloc/lib/presentation/screens/home_screen.dart | true | 200 | 3,400 |
import 'package:counter_bloc/presentation/screens/second_screen.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import '../../logic/cubit/counter_cubit.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({super.k... | 3 |
abdo1234512345/I-Movie | 40a1390 | lib/Features/home_view/presention/views/Widgets/home_contant.dart | Dart | www.github.com/abdo1234512345/I-Movie/tree/main/lib/Features/home_view/presention/views/Widgets/home_contant.dart | https://raw.githubusercontent.com/abdo1234512345/I-Movie/40a1390/lib/Features/home_view/presention/views/Widgets/home_contant.dart | abdo1234512345/I-Movie 40a1390 lib/Features/home_view/presention/views/Widgets/home_contant.dart | true | 200 | 938 | import 'package:flutter/material.dart';
import 'package:movieapp/Features/home_view/presention/views/Widgets/home_content_body.dart';
class HomeContent extends StatefulWidget {
const HomeContent({super.key});
@override
HomeContentState createState() => HomeContentState();
}
class HomeContentState extends State... | 0 |
jyholic1209/flutter-yaber | c7bda90 | lib/src/screens/signup/signup_info_screen.dart | Dart | www.github.com/jyholic1209/flutter-yaber/tree/main/lib/src/screens/signup/signup_info_screen.dart | https://raw.githubusercontent.com/jyholic1209/flutter-yaber/c7bda90/lib/src/screens/signup/signup_info_screen.dart | jyholic1209/flutter-yaber c7bda90 lib/src/screens/signup/signup_info_screen.dart | true | 200 | 9,999 | import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_yaber/src/controller/auth_controller.dart';
import 'package:flutter_yaber/src/controller/signup_controller.dart';
import 'package:flutter_yaber/src/controller/stroage_controller.dart';
import 'pack... | 6 |
driosn/marvel_dd360_test | 34bc7dc | lib/app/app.dart | Dart | www.github.com/driosn/marvel_dd360_test/tree/main/lib/app/app.dart | https://raw.githubusercontent.com/driosn/marvel_dd360_test/34bc7dc/lib/app/app.dart | driosn/marvel_dd360_test 34bc7dc lib/app/app.dart | true | 200 | 817 | import 'package:flutter/material.dart';
import 'package:flutter_modular/flutter_modular.dart';
import 'package:marvel_dd360_test/core/colors/colors.dart';
class MarvelApp extends StatelessWidget {
const MarvelApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp.router(
t... | 5 |
Gaurav232003/Attendance-System | d0d9078 | lib/landnig.dart | Dart | www.github.com/Gaurav232003/Attendance-System/tree/main/lib/landnig.dart | https://raw.githubusercontent.com/Gaurav232003/Attendance-System/d0d9078/lib/landnig.dart | Gaurav232003/Attendance-System d0d9078 lib/landnig.dart | true | 200 | 2,091 | import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
import 'package:flutterfire_ui/auth.dart';
import 'main.dart';
class AuthGate extends StatelessWidget {
const AuthGate({super.key});
@override
Widget build(BuildContext context) {
return StreamBuilder<User?>(
s... | 2 |
AKSHAYK0UL/Koul-Network | 020ce32 | lib/UI/home/more/screen/app_pin_setting/processing/loading.dart | Dart | www.github.com/AKSHAYK0UL/Koul-Network/tree/main/lib/UI/home/more/screen/app_pin_setting/processing/loading.dart | https://raw.githubusercontent.com/AKSHAYK0UL/Koul-Network/020ce32/lib/UI/home/more/screen/app_pin_setting/processing/loading.dart | AKSHAYK0UL/Koul-Network 020ce32 lib/UI/home/more/screen/app_pin_setting/processing/loading.dart | true | 200 | 5,894 | import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:koul_network/UI/home/screens/home_screen.dart';
import 'package:koul_network/bloc/auth_bloc/auth_bloc.dart';
import 'package:koul_network/core/enums/app_pin_settting.dart';
import 'package:koul... | 1 |
nthienquang199x/m-mart | 713ae48 | lib/features/intro/presentation/intro_page.dart | Dart | www.github.com/nthienquang199x/m-mart/tree/main/lib/features/intro/presentation/intro_page.dart | https://raw.githubusercontent.com/nthienquang199x/m-mart/713ae48/lib/features/intro/presentation/intro_page.dart | nthienquang199x/m-mart 713ae48 lib/features/intro/presentation/intro_page.dart | true | 200 | 8,145 | import 'package:blurrycontainer/blurrycontainer.dart';
import 'package:flutter/material.dart';
import 'package:flutter_carousel_widget/flutter_carousel_widget.dart';
import 'package:m_mart/core/localization/app_locale.dart';
import 'package:m_mart/features/intro/models/intro_type.dart';
import 'package:m_mart/utils/ext... | 3 |
ammar871/donyaApp | 3ae39e2 | lib/persentaiton/screens/adds/menu_adds_screen.dart | Dart | www.github.com/ammar871/donyaApp/tree/main/lib/persentaiton/screens/adds/menu_adds_screen.dart | https://raw.githubusercontent.com/ammar871/donyaApp/3ae39e2/lib/persentaiton/screens/adds/menu_adds_screen.dart | ammar871/donyaApp 3ae39e2 lib/persentaiton/screens/adds/menu_adds_screen.dart | true | 200 | 20,912 | import 'dart:io';
import 'package:doniya/app-with-api/bloc/add_cubit/add_cubit.dart';
import 'package:doniya/app-with-api/helpers/constants.dart';
import 'package:doniya/app-with-api/models/category_model.dart';
import 'package:doniya/helpers/commens.dart';
import 'package:doniya/helpers/conatans.dart';
import 'packag... | 7 |
codewithowais/GetX-beginners | 59d7ea6 | lib/views/home/home_view.dart | Dart | www.github.com/codewithowais/GetX-beginners/tree/main/lib/views/home/home_view.dart | https://raw.githubusercontent.com/codewithowais/GetX-beginners/59d7ea6/lib/views/home/home_view.dart | codewithowais/GetX-beginners 59d7ea6 lib/views/home/home_view.dart | true | 200 | 3,939 | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:statemanagementdummy/components/text_component.dart';
import 'package:statemanagementdummy/controllers/home/home_controller.dart';
import 'package:statemanagementdummy/utils/color_constraints.dart';
import 'package:statemanagementdum... | 0 |
nureddineraslan/text_to_speech | 1baa2e0 | lib/screens/audio_player.dart | Dart | www.github.com/nureddineraslan/text_to_speech/tree/main/lib/screens/audio_player.dart | https://raw.githubusercontent.com/nureddineraslan/text_to_speech/1baa2e0/lib/screens/audio_player.dart | nureddineraslan/text_to_speech 1baa2e0 lib/screens/audio_player.dart | true | 200 | 6,243 | import 'dart:io';
import 'package:easy_localization/easy_localization.dart';
import 'package:path/path.dart' as path;
import 'package:audioplayers/audioplayers.dart';
import 'package:file_picker/file_picker.dart';
import 'package:flutter/material.dart';
import 'package:path_provider/path_provider.dart';
class AudioPl... | 4 |
carlitosxx/flutter_qoway | e12695b | lib/ui/register/bloc/register/register_bloc.dart | Dart | www.github.com/carlitosxx/flutter_qoway/tree/main/lib/ui/register/bloc/register/register_bloc.dart | https://raw.githubusercontent.com/carlitosxx/flutter_qoway/e12695b/lib/ui/register/bloc/register/register_bloc.dart | carlitosxx/flutter_qoway e12695b lib/ui/register/bloc/register/register_bloc.dart | true | 200 | 987 | import 'package:bloc/bloc.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:qoway/core/utils/map_failure_to_string.dart';
import 'package:security/security.dart';
part 'register_event.dart';
part 'register_state.dart';
part 'register_bloc.freezed.dart';
class RegisterBloc extends Blo... | 6 |
Aaditya9990/project_first | 58ef5fd | lib/HomeScreen/list_item.dart | Dart | www.github.com/Aaditya9990/project_first/tree/main/lib/HomeScreen/list_item.dart | https://raw.githubusercontent.com/Aaditya9990/project_first/58ef5fd/lib/HomeScreen/list_item.dart | Aaditya9990/project_first 58ef5fd lib/HomeScreen/list_item.dart | true | 200 | 2,152 | import 'dart:ui';
import 'package:flutter/material.dart';
class Fruit {
final String name;
final Color color;
Fruit(this.name, this.color);
}
class Date {
final String weekdays;
final String datenumber;
Date(this.weekdays, this.datenumber);
}
final List<Fruit> item = [
Fruit('Apple', Colors.red),
... | 5 |
haneen1998rafea/flower_store | 9309b2f | lib/widgets/container_button.dart | Dart | www.github.com/haneen1998rafea/flower_store/tree/main/lib/widgets/container_button.dart | https://raw.githubusercontent.com/haneen1998rafea/flower_store/9309b2f/lib/widgets/container_button.dart | haneen1998rafea/flower_store 9309b2f lib/widgets/container_button.dart | true | 200 | 1,054 | import 'package:flowerstore/constant.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
class ContainerButton extends StatelessWidget {
final String title;
final VoidCallback onTap;
const ContainerButton({required this.title, required this.onTap});
@override
Widg... | 2 |
sai-kumar-misala/task_management | e705246 | lib/features/tasks/presentation/widgets/date_picker.dart | Dart | www.github.com/sai-kumar-misala/task_management/tree/main/lib/features/tasks/presentation/widgets/date_picker.dart | https://raw.githubusercontent.com/sai-kumar-misala/task_management/e705246/lib/features/tasks/presentation/widgets/date_picker.dart | sai-kumar-misala/task_management e705246 lib/features/tasks/presentation/widgets/date_picker.dart | true | 200 | 1,102 | import 'package:flutter/material.dart';
import '../../../../core/constants/app_strings.dart';
class DatePickerCard extends StatelessWidget {
final DateTime date;
final Function(DateTime) onDateSelected;
const DatePickerCard({
super.key,
required this.date,
required this.onDateSelected,
});
Fut... | 1 |
projetos-isolados-dbm/catalogo-widgets | 34bb543 | lib/limited_box_exemplo.dart | Dart | www.github.com/projetos-isolados-dbm/catalogo-widgets/tree/main/lib/limited_box_exemplo.dart | https://raw.githubusercontent.com/projetos-isolados-dbm/catalogo-widgets/34bb543/lib/limited_box_exemplo.dart | projetos-isolados-dbm/catalogo-widgets 34bb543 lib/limited_box_exemplo.dart | true | 200 | 1,044 | import 'package:flutter/material.dart';
void main() {
runApp(
const MaterialApp(
debugShowCheckedModeBanner: false,
home: LimitedBoxExemplo(),
),
);
}
class LimitedBoxExemplo extends StatefulWidget {
final String title = 'LimitedBoxExemplo';
const LimitedBoxExemplo({Key? key}) : super(key... | 3 |
Cesart18/movie_app | 323b51c | lib/presentation/wigdets/actors/actors_by_movie.dart | Dart | www.github.com/Cesart18/movie_app/tree/main/lib/presentation/wigdets/actors/actors_by_movie.dart | https://raw.githubusercontent.com/Cesart18/movie_app/323b51c/lib/presentation/wigdets/actors/actors_by_movie.dart | Cesart18/movie_app 323b51c lib/presentation/wigdets/actors/actors_by_movie.dart | true | 200 | 1,398 | import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:animate_do/animate_do.dart';
import 'package:movie_app/domain/entities/actor.dart';
import 'package:movie_app/presentation/providers/actors/actors_by_movie_provider.dart';
import 'package:movie_app/presentat... | 7 |
DaniloOlegario/dart_fundamentos | d3c1cd7 | lib/conversoes_manipilacoes_7/manipulando_numeros.dart | Dart | www.github.com/DaniloOlegario/dart_fundamentos/tree/main/lib/conversoes_manipilacoes_7/manipulando_numeros.dart | https://raw.githubusercontent.com/DaniloOlegario/dart_fundamentos/d3c1cd7/lib/conversoes_manipilacoes_7/manipulando_numeros.dart | DaniloOlegario/dart_fundamentos d3c1cd7 lib/conversoes_manipilacoes_7/manipulando_numeros.dart | true | 200 | 580 | void main() {
final idade = 29;
print('Sua idade é $idade');
final valor = -20;
if (valor.isNegative) {
print(valor);
}
final valorDouble = 10.65;
print(valorDouble.round());
print(valorDouble.roundToDouble());
final valorCertoString = '30';
final valorErradoString = 'Danilo';
final valorI... | 0 |
ErnestAlf222/formsFlutterApp | 44f2e17 | lib/presentation/screens/bloc_counter_screen.dart | Dart | www.github.com/ErnestAlf222/formsFlutterApp/tree/main/lib/presentation/screens/bloc_counter_screen.dart | https://raw.githubusercontent.com/ErnestAlf222/formsFlutterApp/44f2e17/lib/presentation/screens/bloc_counter_screen.dart | ErnestAlf222/formsFlutterApp 44f2e17 lib/presentation/screens/bloc_counter_screen.dart | true | 200 | 2,432 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:forms_app/presentation/blocs/counter_bloc/counter_bloc.dart';
class BlocCounterScreen extends StatelessWidget {
const BlocCounterScreen({super.key});
@override
Widget build(BuildContext context) {
final ... | 4 |
Soko9/key_keeper | fbe1283 | lib/src/app/views/widgets/password_tile.dart | Dart | www.github.com/Soko9/key_keeper/tree/main/lib/src/app/views/widgets/password_tile.dart | https://raw.githubusercontent.com/Soko9/key_keeper/fbe1283/lib/src/app/views/widgets/password_tile.dart | Soko9/key_keeper fbe1283 lib/src/app/views/widgets/password_tile.dart | true | 200 | 2,832 | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:key_keeper/src/app/controllers/controllers.dart';
import '../../models/models.dart';
import 'password_screen.dart';
class PasswordTile extends StatelessWidget {
final Password password;
const PasswordTile({
super.key,
... | 6 |
sherryweywudhd/admin | d65afc3 | lib/widgets/wg_drawer.dart | Dart | www.github.com/sherryweywudhd/admin/tree/main/lib/widgets/wg_drawer.dart | https://raw.githubusercontent.com/sherryweywudhd/admin/d65afc3/lib/widgets/wg_drawer.dart | sherryweywudhd/admin d65afc3 lib/widgets/wg_drawer.dart | true | 200 | 1,704 | import 'package:admin/controllers/ct_drawer.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
Widget customDrawer() {
var drawer = Get.put(CustomDrawerController());
return Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: [
DrawerHeader(
dec... | 1 |
TeryakiiSauce/oldbike | a0fa3a2 | lib/screens/tracking/statistics.dart | Dart | www.github.com/TeryakiiSauce/oldbike/tree/main/lib/screens/tracking/statistics.dart | https://raw.githubusercontent.com/TeryakiiSauce/oldbike/a0fa3a2/lib/screens/tracking/statistics.dart | TeryakiiSauce/oldbike a0fa3a2 lib/screens/tracking/statistics.dart | true | 200 | 1,095 | import 'package:flutter/material.dart';
import 'package:oldbike/models/ride_stats.dart';
import 'package:oldbike/models/screen.dart';
import 'package:oldbike/components/base_screen_template.dart';
class StatisticsScreen extends StatefulWidget {
static const TabScreen screen = TabScreen.statistics;
final RideStatis... | 5 |
sakshi-devrani/Recruiter | 75e0349 | jobfinder/lib/Profile Components/company_info.dart | Dart | www.github.com/sakshi-devrani/Recruiter/tree/main/jobfinder/lib/Profile Components/company_info.dart | https://raw.githubusercontent.com/sakshi-devrani/Recruiter/75e0349/jobfinder/lib/Profile%20Components/company_info.dart | sakshi-devrani/Recruiter 75e0349 jobfinder/lib/Profile Components/company_info.dart | true | 200 | 9,610 | // ignore_for_file: unused_field, deprecated_member_use
import 'package:flutter/material.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:get/get.dart';
import 'package:jobfinder/Profile%20Components/ProfilePage.dart';
import 'package:jobf... | 2 |
MedhatSaleh123/Travenor | 8e06ee7 | lib/views/widgets/home/best_destination_title.dart | Dart | www.github.com/MedhatSaleh123/Travenor/tree/main/lib/views/widgets/home/best_destination_title.dart | https://raw.githubusercontent.com/MedhatSaleh123/Travenor/8e06ee7/lib/views/widgets/home/best_destination_title.dart | MedhatSaleh123/Travenor 8e06ee7 lib/views/widgets/home/best_destination_title.dart | true | 200 | 901 | import 'package:flutter/material.dart';
class AppTitleAndViewAll extends StatelessWidget {
AppTitleAndViewAll({
super.key, required this.text1,
required this.onPressed,
required this.text2,
});
final String text1;
final String text2;
void Function()? onPressed;
@override
Widget build(BuildContex... | 3 |
miguelfeb02/App-Prueba-Tecnica | b38e01b | lib/src/pages/productos.dart | Dart | www.github.com/miguelfeb02/App-Prueba-Tecnica/tree/main/lib/src/pages/productos.dart | https://raw.githubusercontent.com/miguelfeb02/App-Prueba-Tecnica/b38e01b/lib/src/pages/productos.dart | miguelfeb02/App-Prueba-Tecnica b38e01b lib/src/pages/productos.dart | true | 200 | 4,309 | import 'package:flutter/material.dart';
import 'package:gestionapp/src/controllers/controllerproductos.dart';
import 'package:gestionapp/src/services/mockapi.dart';
import 'package:gestionapp/src/widgets/item.dart';
import 'package:gestionapp/src/widgets/opciones.dart';
import 'package:gestionapp/src/widgets/showd... | 7 |
HeshamAtef22/apparel_store | e74c84e | lib/data/data.dart | Dart | www.github.com/HeshamAtef22/apparel_store/tree/main/lib/data/data.dart | https://raw.githubusercontent.com/HeshamAtef22/apparel_store/e74c84e/lib/data/data.dart | HeshamAtef22/apparel_store e74c84e lib/data/data.dart | true | 200 | 4,302 | import 'package:flutter/material.dart';
import '../components/conmponents.dart';
bool isFavorite = false;
List<ProductCard> products = [
ProductCard(
imageUrl: "assets/images/slimfit.jpg",
showdetails: false,
productName: "Kady Classic Plaids Long Sleeves Pajama",
price: 499.99,
isFavorite: isF... | 0 |
Saad-Hegazy/Pharmacy | 8eaafa4 | lib/widgets/CustomContaner.dart | Dart | www.github.com/Saad-Hegazy/Pharmacy/tree/main/lib/widgets/CustomContaner.dart | https://raw.githubusercontent.com/Saad-Hegazy/Pharmacy/8eaafa4/lib/widgets/CustomContaner.dart | Saad-Hegazy/Pharmacy 8eaafa4 lib/widgets/CustomContaner.dart | true | 200 | 356 |
import 'package:flutter/material.dart';
class CustomContaner extends StatelessWidget {
final String titel;
final String iconSrc;
final void Function()? press;
CustomContaner({
super.key, required this.titel, required this.iconSrc, required this.press,
});
@override
Widget build(BuildContext conte... | 4 |
ziii19/online-shop | cf96135 | lib/presentation/pages/main_page/main_page.dart | Dart | www.github.com/ziii19/online-shop/tree/main/lib/presentation/pages/main_page/main_page.dart | https://raw.githubusercontent.com/ziii19/online-shop/cf96135/lib/presentation/pages/main_page/main_page.dart | ziii19/online-shop cf96135 lib/presentation/pages/main_page/main_page.dart | true | 200 | 2,490 | import '../../methods/show_snackbar.dart';
import '../account_page/account_page.dart';
import '../cart_page/cart_page.dart';
import '../favorite_page/favorite_page.dart';
import '../product_page/product_page.dart';
import '../shop_page/shop_page.dart';
import '../../provider/router/router_provider.dart';
import '../../... | 6 |
venkatesanios/Flutterpractice | 8e95d0c | flutter_practice_sample/lib/service/api/api_service.dart | Dart | www.github.com/venkatesanios/Flutterpractice/tree/main/flutter_practice_sample/lib/service/api/api_service.dart | https://raw.githubusercontent.com/venkatesanios/Flutterpractice/8e95d0c/flutter_practice_sample/lib/service/api/api_service.dart | venkatesanios/Flutterpractice 8e95d0c flutter_practice_sample/lib/service/api/api_service.dart | true | 200 | 1,138 | import 'package:dio/dio.dart';
import 'package:flutter_practice_sample/core/model/GroupModel.dart';
import 'package:retrofit/retrofit.dart';
import 'package:pretty_dio_logger/pretty_dio_logger.dart';
part 'api_service.g.dart';
@RestApi(
// parser: Parser.FlutterCompute,
)
abstract class ApiService {
factory ... | 1 |
FadyFouad/weight-tracker-clean-arch | 555d4cd | lib/features/weights_history/data/remote/data_sources/posts_remote_data_source.dart | Dart | www.github.com/FadyFouad/weight-tracker-clean-arch/tree/main/lib/features/weights_history/data/remote/data_sources/posts_remote_data_source.dart | https://raw.githubusercontent.com/FadyFouad/weight-tracker-clean-arch/555d4cd/lib/features/weights_history/data/remote/data_sources/posts_remote_data_source.dart | FadyFouad/weight-tracker-clean-arch 555d4cd lib/features/weights_history/data/remote/data_sources/posts_remote_data_source.dart | true | 200 | 509 | import 'package:firebase_auth/firebase_auth.dart';
import 'package:weight_tracker_demo/core/firestore_crud_operations.dart';
import 'package:weight_tracker_demo/features/weights_history/data/remote/models/post_remote_data_model.dart';
class PostsRemoteDataSource
extends FirestoreCrudOperations<PostRemoteDataModel>... | 5 |
Spaceyaya/tokoto-e-commerece | 61cd75f | tokoto_e_commerce/lib/main.dart | Dart | www.github.com/Spaceyaya/tokoto-e-commerece/tree/main/tokoto_e_commerce/lib/main.dart | https://raw.githubusercontent.com/Spaceyaya/tokoto-e-commerece/61cd75f/tokoto_e_commerce/lib/main.dart | Spaceyaya/tokoto-e-commerece 61cd75f tokoto_e_commerce/lib/main.dart | true | 200 | 623 | import 'package:flutter/material.dart';
import 'package:tokoto_e_commerce/route.dart';
import 'package:tokoto_e_commerce/screens/splash/splash_screen.dart';
import 'package:tokoto_e_commerce/theme_data.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : su... | 2 |
yegaride/yegasigur-customer-app | 172773f | lib/widget/back_button.dart | Dart | www.github.com/yegaride/yegasigur-customer-app/tree/main/lib/widget/back_button.dart | https://raw.githubusercontent.com/yegaride/yegasigur-customer-app/172773f/lib/widget/back_button.dart | yegaride/yegasigur-customer-app 172773f lib/widget/back_button.dart | true | 200 | 818 | import 'package:flutter/material.dart';
import 'package:get/get.dart';
class AppBackButton extends StatelessWidget {
const AppBackButton({super.key});
@override
Widget build(BuildContext context) {
return Positioned(
top: 10,
left: 5,
child: Padding(
padding: const EdgeInsets.only(... | 3 |
Heungseop/Tiktok_clone | 3142c8b | lib/features/onboarding/widgets/interest_button.dart | Dart | www.github.com/Heungseop/Tiktok_clone/tree/main/lib/features/onboarding/widgets/interest_button.dart | https://raw.githubusercontent.com/Heungseop/Tiktok_clone/3142c8b/lib/features/onboarding/widgets/interest_button.dart | Heungseop/Tiktok_clone 3142c8b lib/features/onboarding/widgets/interest_button.dart | true | 200 | 1,631 | import 'package:flutter/material.dart';
import 'package:tiktok_clone/constants/sizes.dart';
import 'package:tiktok_clone/utils.dart';
class InterestButton extends StatefulWidget {
const InterestButton({
super.key,
required this.interest,
});
final String interest;
@override
State<InterestButton> cr... | 0 |
damolmo/Smart-Cuisine | b45d89a | lib/RecipeScreen/widgets/recipeStepsList.dart | Dart | www.github.com/damolmo/Smart-Cuisine/tree/main/lib/RecipeScreen/widgets/recipeStepsList.dart | https://raw.githubusercontent.com/damolmo/Smart-Cuisine/b45d89a/lib/RecipeScreen/widgets/recipeStepsList.dart | damolmo/Smart-Cuisine b45d89a lib/RecipeScreen/widgets/recipeStepsList.dart | true | 200 | 3,755 | import 'package:flutter/material.dart';
import '../../exports.dart';
class RecipeStepsList extends StatelessWidget{
@override
const RecipeStepsList({
required this.viewModel
});
final RecipeScreenModel viewModel;
@override
Widget build(BuildContext context){
return Container(
width: getDe... | 4 |
ayz1070/flutter_features | f450302 | lib/core/utils/test_data.dart | Dart | www.github.com/ayz1070/flutter_features/tree/main/lib/core/utils/test_data.dart | https://raw.githubusercontent.com/ayz1070/flutter_features/f450302/lib/core/utils/test_data.dart | ayz1070/flutter_features f450302 lib/core/utils/test_data.dart | true | 200 | 566 | import '../../features/cart/domain/entities/delivery_policy.dart';
class UserModel{
final String id;
final String name;
final String profileImage;
UserModel({required this.id,required this.name, required this.profileImage});
}
class TestData{
static UserModel loginedUser = UserModel(id: "test_user_id", n... | 7 |
XiZhangPhuong/qlbh_mevivu | 87d47d3 | lib/screens/dashboard/dashboard_controller.dart | Dart | www.github.com/XiZhangPhuong/qlbh_mevivu/tree/main/lib/screens/dashboard/dashboard_controller.dart | https://raw.githubusercontent.com/XiZhangPhuong/qlbh_mevivu/87d47d3/lib/screens/dashboard/dashboard_controller.dart | XiZhangPhuong/qlbh_mevivu 87d47d3 lib/screens/dashboard/dashboard_controller.dart | true | 200 | 291 | import 'package:get/get.dart';
class DashBoardController extends GetxController {
// gán biến
var selectedIndex = 0.obs;
@override
void onInit() {
super.onInit();
}
// chuyển đổi màn hình
void changeTabIndex(int index) {
selectedIndex.value = index;
}
}
| 6 |
phoringit/phoring-user | fc41cb5 | lib/features/restock/controllers/restock_controller.dart | Dart | www.github.com/phoringit/phoring-user/tree/main/lib/features/restock/controllers/restock_controller.dart | https://raw.githubusercontent.com/phoringit/phoring-user/fc41cb5/lib/features/restock/controllers/restock_controller.dart | phoringit/phoring-user fc41cb5 lib/features/restock/controllers/restock_controller.dart | true | 200 | 3,473 | import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter_sixvalley_ecommerce/data/model/api_response.dart';
import 'package:flutter_sixvalley_ecommerce/features/restock/domain/services/restock_service_interface.dart';
import 'package:flutter_sixvalley_ecommerce/main.dart';
import 'dart:async... | 1 |
cybaker/Gravitar | bcd2a38 | lib/src/game/components/base_enemy.dart | Dart | www.github.com/cybaker/Gravitar/tree/main/lib/src/game/components/base_enemy.dart | https://raw.githubusercontent.com/cybaker/Gravitar/bcd2a38/lib/src/game/components/base_enemy.dart | cybaker/Gravitar bcd2a38 lib/src/game/components/base_enemy.dart | true | 200 | 5,689 | import 'dart:math';
import 'dart:ui';
import 'dart:async' as async;
import 'package:Gravitar/src/game/components/segment_component.dart';
import 'package:Gravitar/src/game/extensions/component_effects.dart';
import 'package:flame/collisions.dart';
import 'package:flame/components.dart';
import 'package:flame/palette.d... | 5 |
phiahihi/flutter_fafte | f675e14 | lib/ui/home/chat/widget/chat_screen_content.dart | Dart | www.github.com/phiahihi/flutter_fafte/tree/main/lib/ui/home/chat/widget/chat_screen_content.dart | https://raw.githubusercontent.com/phiahihi/flutter_fafte/f675e14/lib/ui/home/chat/widget/chat_screen_content.dart | phiahihi/flutter_fafte f675e14 lib/ui/home/chat/widget/chat_screen_content.dart | true | 200 | 2,993 | import 'package:dash_chat_2/dash_chat_2.dart';
import 'package:fafte/controller/chat_controller.dart';
import 'package:fafte/models/user.dart';
import 'package:fafte/utils/export.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:get/get.dart';
import 'package:get/get_core/src/get_main.dart';
imp... | 2 |
LasithMadhawa/swivel-eventplanner | 74a59e7 | lib/features/main_app/home/presentation/screens/comments_screen.dart | Dart | www.github.com/LasithMadhawa/swivel-eventplanner/tree/main/lib/features/main_app/home/presentation/screens/comments_screen.dart | https://raw.githubusercontent.com/LasithMadhawa/swivel-eventplanner/74a59e7/lib/features/main_app/home/presentation/screens/comments_screen.dart | LasithMadhawa/swivel-eventplanner 74a59e7 lib/features/main_app/home/presentation/screens/comments_screen.dart | true | 200 | 2,394 | import '../widgets/comment_widget.dart';
import '../../../../../core/models/post_model.dart';
import '../../data/repositories/posts_repository.dart';
import '../blocs/comments/comments_bloc.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
class CommentsScreen extends Sta... | 0 |
pkathiriya62/furniture | dc6a10e | lib/view/paymentmethod.dart | Dart | www.github.com/pkathiriya62/furniture/tree/main/lib/view/paymentmethod.dart | https://raw.githubusercontent.com/pkathiriya62/furniture/dc6a10e/lib/view/paymentmethod.dart | pkathiriya62/furniture dc6a10e lib/view/paymentmethod.dart | true | 200 | 2,908 | import 'package:flutter/material.dart';
import 'package:furniture/common/Appcolor.dart';
import 'package:furniture/common/globaltext.dart';
import 'package:furniture/view/addpaymentscreen.dart';
import 'package:get/get.dart';
class PaymentScreen extends StatefulWidget {
const PaymentScreen({super.key});
@override... | 3 |
RxMobile-Dummy/flutter-zoom-call | f41855b | lib/features/zoom_video_call/data/data_sources/firebase_firestore/firebase_firestore_data_source_impl.dart | Dart | www.github.com/RxMobile-Dummy/flutter-zoom-call/tree/main/lib/features/zoom_video_call/data/data_sources/firebase_firestore/firebase_firestore_data_source_impl.dart | https://raw.githubusercontent.com/RxMobile-Dummy/flutter-zoom-call/f41855b/lib/features/zoom_video_call/data/data_sources/firebase_firestore/firebase_firestore_data_source_impl.dart | RxMobile-Dummy/flutter-zoom-call f41855b lib/features/zoom_video_call/data/data_sources/firebase_firestore/firebase_firestore_data_source_impl.dart | true | 200 | 1,280 | import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter_zoom_call/features/zoom_video_call/data/data_sources/firebase_firestore/firebase_firestore_data_source.dart';
import '../../models/meeting_model.dart';
class FirebaseFireStoreDataSourceImp... | 4 |
Kinan11z/ptc_test2 | 62da756 | lib/views/widgets/grocery_screen/recommended_list_view.dart | Dart | www.github.com/Kinan11z/ptc_test2/tree/main/lib/views/widgets/grocery_screen/recommended_list_view.dart | https://raw.githubusercontent.com/Kinan11z/ptc_test2/62da756/lib/views/widgets/grocery_screen/recommended_list_view.dart | Kinan11z/ptc_test2 62da756 lib/views/widgets/grocery_screen/recommended_list_view.dart | true | 200 | 703 | import 'package:flutter/material.dart';
import 'package:ptc_test2/core/constants/app_values.dart';
import 'package:ptc_test2/core/data/static/products_data.dart';
import 'package:ptc_test2/views/widgets/grocery_screen/recommended_item.dart';
class RecommendedListView extends StatelessWidget {
const RecommendedListVi... | 7 |
izzatillo20050606/Saved-Contact | 3e1ca9b | lib/app/dashboard/dashboard_screen.dart | Dart | www.github.com/izzatillo20050606/Saved-Contact/tree/main/lib/app/dashboard/dashboard_screen.dart | https://raw.githubusercontent.com/izzatillo20050606/Saved-Contact/3e1ca9b/lib/app/dashboard/dashboard_screen.dart | izzatillo20050606/Saved-Contact 3e1ca9b lib/app/dashboard/dashboard_screen.dart | true | 200 | 1,896 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_crud/app/create/bloc/create_bloc.dart';
import 'package:flutter_crud/app/create/create_screen.dart';
import 'package:flutter_crud/app/search/bloc/search_bloc.dart';
import '../search/search_screen.dart';
c... | 6 |
samircoding575/booktrack | 6478242 | main.dart | Dart | www.github.com/samircoding575/booktrack/tree/main/main.dart | https://raw.githubusercontent.com/samircoding575/booktrack/6478242/main.dart | samircoding575/booktrack 6478242 main.dart | true | 200 | 8,007 | import 'package:flutter/material.dart';
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'page2.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialA... | 1 |
sepehr13494/wmd | 2f24092 | lib/features/settings/core/domain/use_cases/get_settings_usecase.dart | Dart | www.github.com/sepehr13494/wmd/tree/main/lib/features/settings/core/domain/use_cases/get_settings_usecase.dart | https://raw.githubusercontent.com/sepehr13494/wmd/2f24092/lib/features/settings/core/domain/use_cases/get_settings_usecase.dart | sepehr13494/wmd 2f24092 lib/features/settings/core/domain/use_cases/get_settings_usecase.dart | true | 200 | 595 | import 'package:dartz/dartz.dart';
import 'package:wmd/core/domain/usecases/usercase.dart';
import 'package:wmd/core/error_and_success/failures.dart';
import '../../data/models/get_settings_params.dart';
import '../entities/get_settings_entity.dart';
import '../repositories/settings_repository.dart';
class GetSetting... | 2 |
JoaoPauloUbaF/marba_project | 3d4c6d0 | lib/src/features/offers_management/application/offer_list/business_offers_provider.dart | Dart | www.github.com/JoaoPauloUbaF/marba_project/tree/main/lib/src/features/offers_management/application/offer_list/business_offers_provider.dart | https://raw.githubusercontent.com/JoaoPauloUbaF/marba_project/3d4c6d0/lib/src/features/offers_management/application/offer_list/business_offers_provider.dart | JoaoPauloUbaF/marba_project 3d4c6d0 lib/src/features/offers_management/application/offer_list/business_offers_provider.dart | true | 200 | 1,196 | import 'package:project_marba/src/features/business/application/business_profile_view_model/business_profile_screen_controller.dart';
import 'package:project_marba/src/features/offers_management/data/offer_data_repository_provider.dart';
import 'package:project_marba/src/core/models/offer/offer_model.dart';
import 'pac... | 5 |
Ali-2001-Eg/salla_app | 96730f6 | lib/models/shop_app/home_model.dart | Dart | www.github.com/Ali-2001-Eg/salla_app/tree/main/lib/models/shop_app/home_model.dart | https://raw.githubusercontent.com/Ali-2001-Eg/salla_app/96730f6/lib/models/shop_app/home_model.dart | Ali-2001-Eg/salla_app 96730f6 lib/models/shop_app/home_model.dart | true | 200 | 1,284 | class HomeModel {
bool? status;
late HomeDataModel data;
HomeModel.fromjson(Map<String, dynamic> json) {
status = json['status'];
data = HomeDataModel.fromjson(json['data']);
}
}
class HomeDataModel {
List<BannerModel> banners = [];
late List<ProductsModel> products = [];
//to carry the banner and ... | 0 |
Ghaithmeftah/expenses | b8e8aa4 | lib/Widgets/Chart_Bar.dart | Dart | www.github.com/Ghaithmeftah/expenses/tree/main/lib/Widgets/Chart_Bar.dart | https://raw.githubusercontent.com/Ghaithmeftah/expenses/b8e8aa4/lib/Widgets/Chart_Bar.dart | Ghaithmeftah/expenses b8e8aa4 lib/Widgets/Chart_Bar.dart | true | 200 | 1,162 | import 'package:flutter/material.dart';
class ChartBar extends StatelessWidget {
final String label;
final double spendingAmount;
final double spendingPctOfTotal;
const ChartBar(this.label,this.spendingAmount,this.spendingPctOfTotal);
@override
Widget build(BuildContext context) {
return Column(childr... | 3 |
Schreezer/OnlineCanteen | f2cebae | lib/widgets/textFieldInput.dart | Dart | www.github.com/Schreezer/OnlineCanteen/tree/main/lib/widgets/textFieldInput.dart | https://raw.githubusercontent.com/Schreezer/OnlineCanteen/f2cebae/lib/widgets/textFieldInput.dart | Schreezer/OnlineCanteen f2cebae lib/widgets/textFieldInput.dart | true | 200 | 1,597 | import 'package:flutter/material.dart';
class TextFieldInput extends StatefulWidget {
final TextEditingController textEditingController;
final bool isPass;
final String hintText;
bool visibility;
final TextInputType textInputType;
TextFieldInput({super.key,
required this.textEditingController,
... | 7 |
Karthikkv1/Unimart-App | 02bd931 | lib/features/personalization/screens/address/widgets/add_new_address.dart | Dart | www.github.com/Karthikkv1/Unimart-App/tree/main/lib/features/personalization/screens/address/widgets/add_new_address.dart | https://raw.githubusercontent.com/Karthikkv1/Unimart-App/02bd931/lib/features/personalization/screens/address/widgets/add_new_address.dart | Karthikkv1/Unimart-App 02bd931 lib/features/personalization/screens/address/widgets/add_new_address.dart | true | 200 | 4,379 | import 'package:flutter/material.dart';
import 'package:get/get_core/src/get_main.dart';
import 'package:get/get_navigation/get_navigation.dart';
import 'package:iconsax/iconsax.dart';
import 'package:unimart/common/widgets/appbar/appbar.dart';
import 'package:unimart/features/personalization/controllers/address_contro... | 4 |
klam2k20/ShopApp | bd5e618 | lib/widgets/product_item.dart | Dart | www.github.com/klam2k20/ShopApp/tree/main/lib/widgets/product_item.dart | https://raw.githubusercontent.com/klam2k20/ShopApp/bd5e618/lib/widgets/product_item.dart | klam2k20/ShopApp bd5e618 lib/widgets/product_item.dart | true | 200 | 2,090 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../screens/product_detail_screen.dart';
import '../providers/product.dart';
import '../providers/cartItems_provider.dart';
class ProductItem extends StatelessWidget {
@override
Widget build(BuildContext context) {
final p... | 6 |
khalidgamal0/new-snp-crop | 6e1ea77 | lib/features/splash/cubit/splash_cubit.dart | Dart | www.github.com/khalidgamal0/new-snp-crop/tree/main/lib/features/splash/cubit/splash_cubit.dart | https://raw.githubusercontent.com/khalidgamal0/new-snp-crop/6e1ea77/lib/features/splash/cubit/splash_cubit.dart | khalidgamal0/new-snp-crop 6e1ea77 lib/features/splash/cubit/splash_cubit.dart | true | 200 | 12,270 | import 'dart:async';
import 'dart:developer';
import 'dart:developer';
import 'dart:io';
import 'package:artificial_intelligence/core/utils/toast.dart';
import 'package:dio/dio.dart';
import 'package:open_file/open_file.dart';
import 'package:path_provider/path_provider.dart';
import 'package:artificial_intelligence/f... | 1 |
andrean-assist/kerjaa | f9bc974 | lib/app/modules/forgot_password/controllers/forgot_password_controller.dart | Dart | www.github.com/andrean-assist/kerjaa/tree/main/lib/app/modules/forgot_password/controllers/forgot_password_controller.dart | https://raw.githubusercontent.com/andrean-assist/kerjaa/f9bc974/lib/app/modules/forgot_password/controllers/forgot_password_controller.dart | andrean-assist/kerjaa f9bc974 lib/app/modules/forgot_password/controllers/forgot_password_controller.dart | true | 200 | 815 | import 'package:assist_hadir/app/modules/init/controllers/init_controller.dart';
import 'package:flutter/widgets.dart';
import 'package:get/get.dart';
import '../../../routes/app_pages.dart';
class ForgotPasswordController extends GetxController {
late final InitController _initC;
final formKey = GlobalKey<FormS... | 2 |
WARDKEY/ShotAndShoot_client | 7a43f64 | lib/utils/question_list.dart | Dart | www.github.com/WARDKEY/ShotAndShoot_client/tree/main/lib/utils/question_list.dart | https://raw.githubusercontent.com/WARDKEY/ShotAndShoot_client/7a43f64/lib/utils/question_list.dart | WARDKEY/ShotAndShoot_client 7a43f64 lib/utils/question_list.dart | true | 200 | 6,024 | import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:shotandshoot/models/question.dart';
import '../screens/post_detail.dart';
// 카테고리별 색상 설정
final Map<String, Color> _categoryColors = {
'종이': Color(0xff8B4513),
'고철': Color(0xff696969),
'유리': Color(0xff4169E1),
'캔': Color(0x... | 5 |
VMB-DEV/robuzzle | 53c3954 | lib/features/settings/domain/entities/entity_theme_type.dart | Dart | www.github.com/VMB-DEV/robuzzle/tree/main/lib/features/settings/domain/entities/entity_theme_type.dart | https://raw.githubusercontent.com/VMB-DEV/robuzzle/53c3954/lib/features/settings/domain/entities/entity_theme_type.dart | VMB-DEV/robuzzle 53c3954 lib/features/settings/domain/entities/entity_theme_type.dart | true | 200 | 617 | import '../../data/models/model_theme_type.dart';
enum ThemeTypeEntity {
dark, light, neon;
bool get isDark => this == dark;
factory ThemeTypeEntity.from({required ThemeTypeModel model}) => ThemeTypeEntity.values
.singleWhere(
(element) => element.name == model.name,
orElse: () => thr... | 0 |
Yermek-maes/shopease | 5ae087e | lib/screens/payment_screen.dart | Dart | www.github.com/Yermek-maes/shopease/tree/main/lib/screens/payment_screen.dart | https://raw.githubusercontent.com/Yermek-maes/shopease/5ae087e/lib/screens/payment_screen.dart | Yermek-maes/shopease 5ae087e lib/screens/payment_screen.dart | true | 200 | 7,810 | import 'package:flutter/material.dart';
class PaymentScreen extends StatefulWidget {
@override
_PaymentScreenState createState() => _PaymentScreenState();
}
class _PaymentScreenState extends State<PaymentScreen> {
final _cardNumberController = TextEditingController(); // Контроллер для номера карты.
final _ca... | 4 |
monapara354/just_movie_db | ba36dea | lib/features/movie_details/presentation/widgets/cast_widget.dart | Dart | www.github.com/monapara354/just_movie_db/tree/main/lib/features/movie_details/presentation/widgets/cast_widget.dart | https://raw.githubusercontent.com/monapara354/just_movie_db/ba36dea/lib/features/movie_details/presentation/widgets/cast_widget.dart | monapara354/just_movie_db ba36dea lib/features/movie_details/presentation/widgets/cast_widget.dart | true | 200 | 2,468 | import "package:cached_network_image/cached_network_image.dart";
import "package:flutter/material.dart";
import "package:just_movie/core/constants/image_constants.dart";
import "package:just_movie/core/constants/theme_constants.dart";
import "package:just_movie/core/services/api_urls.dart";
import "package:sizer/sizer.... | 3 |
anyhee/alert_dialog01 | 7fcb058 | lib/pages/selection_page.dart | Dart | www.github.com/anyhee/alert_dialog01/tree/main/lib/pages/selection_page.dart | https://raw.githubusercontent.com/anyhee/alert_dialog01/7fcb058/lib/pages/selection_page.dart | anyhee/alert_dialog01 7fcb058 lib/pages/selection_page.dart | true | 200 | 1,497 | import 'package:flutter/material.dart';
class SelectionPage extends StatefulWidget {
const SelectionPage({super.key});
@override
State<SelectionPage> createState() => _SelectionPageState();
}
class _SelectionPageState extends State<SelectionPage> {
selectedDate() {
showDatePicker(
context: context,... | 7 |
KumarArab/Paperid---Audiobook-App | 4293e14 | lib/ui/screens/tabs/discover.dart | Dart | www.github.com/KumarArab/Paperid---Audiobook-App/tree/main/lib/ui/screens/tabs/discover.dart | https://raw.githubusercontent.com/KumarArab/Paperid---Audiobook-App/4293e14/lib/ui/screens/tabs/discover.dart | KumarArab/Paperid---Audiobook-App 4293e14 lib/ui/screens/tabs/discover.dart | true | 200 | 5,586 | import 'package:audiobook/services/appData.dart';
import 'package:audiobook/ui/screens/tabs/home%20tabs/authors.dart';
import 'package:audiobook/ui/screens/tabs/home%20tabs/foryou.dart';
import 'package:audiobook/ui/screens/tabs/home%20tabs/genres.dart';
import 'package:audiobook/ui/screens/tabs/home%20tabs/premium.dar... | 6 |
PipocaAgilDevs/cigarro-zero-app | 67ea58e | lib/design_system/onboarding/text_themes.dart | Dart | www.github.com/PipocaAgilDevs/cigarro-zero-app/tree/main/lib/design_system/onboarding/text_themes.dart | https://raw.githubusercontent.com/PipocaAgilDevs/cigarro-zero-app/67ea58e/lib/design_system/onboarding/text_themes.dart | PipocaAgilDevs/cigarro-zero-app 67ea58e lib/design_system/onboarding/text_themes.dart | true | 200 | 991 | import 'package:flutter/material.dart';
import '../../app_colors.dart';
import '../../theme_data.dart';
class OnboardingDesignSystem {
static TextStyle title = TextStyle(
///estlo de "COMECE UMA VIDA" e "VAMOS NOS CONHERCER MELHOR!"
color: Colors.black,
fontSize: 24,
fontFamily: 'Oswald',
fontWe... | 1 |
guchengxi1994/all_in_one | e4007b0 | lib/llm/template_editor/extension.dart | Dart | www.github.com/guchengxi1994/all_in_one/tree/main/lib/llm/template_editor/extension.dart | https://raw.githubusercontent.com/guchengxi1994/all_in_one/e4007b0/lib/llm/template_editor/extension.dart | guchengxi1994/all_in_one e4007b0 lib/llm/template_editor/extension.dart | true | 200 | 1,116 | import 'package:appflowy_editor/appflowy_editor.dart';
RegExp exp = RegExp(r'\{\{(.*?)\}\}');
extension EditorStateExtension on EditorState {
String toStr() {
final nodes = document.root.children;
final buffer = StringBuffer();
for (final node in nodes) {
final delta = node.delta;
if (delta ... | 2 |
DEVI2899/Ecommerce-vegetableApp | d8eef9c | lib/Bloc/Product/productbloc.dart | Dart | www.github.com/DEVI2899/Ecommerce-vegetableApp/tree/main/lib/Bloc/Product/productbloc.dart | https://raw.githubusercontent.com/DEVI2899/Ecommerce-vegetableApp/d8eef9c/lib/Bloc/Product/productbloc.dart | DEVI2899/Ecommerce-vegetableApp d8eef9c lib/Bloc/Product/productbloc.dart | true | 200 | 802 |
import 'package:e_vegtable_app/Bloc/Product/productevent.dart';
import 'package:e_vegtable_app/Bloc/Product/productstate.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import '../../Models/ProductItem.dart';
class Productbloc extends Bloc<Productevent, ProductState>{
Productbloc():super(const ProductAdd... | 5 |
SoundSonic1/SimpleMensa_Flutter | de647f1 | lib/data/database/object_box.dart | Dart | www.github.com/SoundSonic1/SimpleMensa_Flutter/tree/main/lib/data/database/object_box.dart | https://raw.githubusercontent.com/SoundSonic1/SimpleMensa_Flutter/de647f1/lib/data/database/object_box.dart | SoundSonic1/SimpleMensa_Flutter de647f1 lib/data/database/object_box.dart | true | 200 | 590 | import 'package:path/path.dart' as p;
import 'package:path_provider/path_provider.dart';
import 'package:simple_mensa/objectbox.g.dart';
class ObjectBox {
late final Store store;
ObjectBox._create(this.store) {
// Add any additional setup code, e.g. build queries.
}
/// Create an instance of ObjectBox to... | 0 |
duycs/workflow-app | 06d2fad | lib/procedure_publishing/work_result_list/work_result_list_model.dart | Dart | www.github.com/duycs/workflow-app/tree/main/lib/procedure_publishing/work_result_list/work_result_list_model.dart | https://raw.githubusercontent.com/duycs/workflow-app/06d2fad/lib/procedure_publishing/work_result_list/work_result_list_model.dart | duycs/workflow-app 06d2fad lib/procedure_publishing/work_result_list/work_result_list_model.dart | true | 200 | 8,249 | import '/backend/api_requests/api_calls.dart';
import '/backend/schema/structs/index.dart';
import '/components/data_not_found/data_not_found_widget.dart';
import '/flutter_flow/flutter_flow_icon_button.dart';
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import '/flutte... | 4 |
p-cube-plus/p-cube-plus-application | eb0da3e | data/lib/remote/p_cube_api/user/models/user_warning_dto.dart | Dart | www.github.com/p-cube-plus/p-cube-plus-application/tree/main/data/lib/remote/p_cube_api/user/models/user_warning_dto.dart | https://raw.githubusercontent.com/p-cube-plus/p-cube-plus-application/eb0da3e/data/lib/remote/p_cube_api/user/models/user_warning_dto.dart | p-cube-plus/p-cube-plus-application eb0da3e data/lib/remote/p_cube_api/user/models/user_warning_dto.dart | true | 200 | 1,181 | import 'user_warning_info_dto.dart';
class UserWarningDTO {
final Map<String, String> warningCategory;
final List<UserWarningInfoDTO> warningAddList;
final List<UserWarningInfoDTO> warningRemoveList;
final int totalWarning;
final int totalAddWarning;
final int totalRemoveWarning;
UserWarningDTO({
re... | 3 |
volkanyurusen/project1_flutter | 946a5e7 | lib/screens/coaching/bodies/training_request_body.dart | Dart | www.github.com/volkanyurusen/project1_flutter/tree/main/lib/screens/coaching/bodies/training_request_body.dart | https://raw.githubusercontent.com/volkanyurusen/project1_flutter/946a5e7/lib/screens/coaching/bodies/training_request_body.dart | volkanyurusen/project1_flutter 946a5e7 lib/screens/coaching/bodies/training_request_body.dart | true | 200 | 996 | import 'package:flutter/material.dart';
import 'package:my_project/screens/coaching/body_areas/zareas.dart';
import 'package:my_project/screens/coaching/pop_ups/zpop_ups.dart';
import 'package:my_project/widgets/widget.dart';
class TrainingRequestBody extends StatelessWidget {
const TrainingRequestBody({
... | 6 |
gimhantharuke456/sachintha_uee | a808793 | lib/views/auth/auth_checker.dart | Dart | www.github.com/gimhantharuke456/sachintha_uee/tree/main/lib/views/auth/auth_checker.dart | https://raw.githubusercontent.com/gimhantharuke456/sachintha_uee/a808793/lib/views/auth/auth_checker.dart | gimhantharuke456/sachintha_uee a808793 lib/views/auth/auth_checker.dart | true | 200 | 1,280 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:sachintha_uee/providers/user_provider.dart';
import 'package:sachintha_uee/views/auth/login_screen.dart';
import 'package:sachintha_uee/views/driver/driver_home.dart';
import 'package:sachintha_uee/views/factory/factory_hom... | 7 |
Roshan-Francis/hangman | 44369a2 | lib/game_page.dart | Dart | www.github.com/Roshan-Francis/hangman/tree/main/lib/game_page.dart | https://raw.githubusercontent.com/Roshan-Francis/hangman/44369a2/lib/game_page.dart | Roshan-Francis/hangman 44369a2 lib/game_page.dart | true | 200 | 11,227 | import 'dart:ui';
import 'package:flutter/material.dart';
import 'game_logic.dart';
const _kAnimationDuration = Duration(milliseconds: 150);
const _kAlphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const _kGridCrossAxisCount = 7;
const _kGridSpacing = 10.0;
class GamePage extends StatefulWidget {
const GamePage({Key? key})... | 2 |
sakshemglaze/MobileApp_HRMS | 182e340 | lib/screen/login_flow/UserNameCodeScreen.dart | Dart | www.github.com/sakshemglaze/MobileApp_HRMS/tree/main/lib/screen/login_flow/UserNameCodeScreen.dart | https://raw.githubusercontent.com/sakshemglaze/MobileApp_HRMS/182e340/lib/screen/login_flow/UserNameCodeScreen.dart | sakshemglaze/MobileApp_HRMS 182e340 lib/screen/login_flow/UserNameCodeScreen.dart | true | 200 | 5,105 | import 'package:dio/dio.dart';
import 'package:flutter/material.dart';
import 'package:hrms/data/model/user_validate_response.dart';
import 'package:hrms/data/remote/network_values.dart';
import '../../data/local/my_shared_preference.dart';
import '../../data/model/base_response.dart';
import '../../data/remote/result.... | 1 |
YunusEmreSimseek/chat_connect_app | d05f3c0 | lib/products/models/message_model.dart | Dart | www.github.com/YunusEmreSimseek/chat_connect_app/tree/main/lib/products/models/message_model.dart | https://raw.githubusercontent.com/YunusEmreSimseek/chat_connect_app/d05f3c0/lib/products/models/message_model.dart | YunusEmreSimseek/chat_connect_app d05f3c0 lib/products/models/message_model.dart | true | 200 | 1,375 | import 'package:chat_connect_app/products/utilities/base/base_firebase_model.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:equatable/equatable.dart';
class MessageModel with EquatableMixin, IdModel, BaseFirebaseModel<MessageModel> {
final String? fromId;
final String? toId;
final ... | 5 |
IamSriKrishna/elective-flutter | 651a42b | lib/src/bloc/session/timer_event.dart | Dart | www.github.com/IamSriKrishna/elective-flutter/tree/main/lib/src/bloc/session/timer_event.dart | https://raw.githubusercontent.com/IamSriKrishna/elective-flutter/651a42b/lib/src/bloc/session/timer_event.dart | IamSriKrishna/elective-flutter 651a42b lib/src/bloc/session/timer_event.dart | true | 200 | 494 | import 'package:equatable/equatable.dart';
class TimerEvent extends Equatable {
const TimerEvent();
@override
List<Object?> get props => [];
}
class TimerStartEvent extends TimerEvent {
final DateTime targetStart;
final DateTime targetEnd;
const TimerStartEvent({required this.targetStart, required this.... | 3 |
shakeebkhan66/checkboxApp | b8d6518 | lib/custom_header.dart | Dart | www.github.com/shakeebkhan66/checkboxApp/tree/main/lib/custom_header.dart | https://raw.githubusercontent.com/shakeebkhan66/checkboxApp/b8d6518/lib/custom_header.dart | shakeebkhan66/checkboxApp b8d6518 lib/custom_header.dart | true | 200 | 1,365 | //custom_header.dart
import 'package:flutter/material.dart';
import 'info_bottom_sheet.dart';
class CustomHeader extends StatelessWidget implements PreferredSizeWidget {
final String appName;
final String appVersion;
final DateTime? lastBackgroundTime;
final DateTime? lastForegroundTime;
final String? parse... | 4 |
GilaFrider/chat_app | 9f5f4d7 | lib/pages/login_page.dart | Dart | www.github.com/GilaFrider/chat_app/tree/main/lib/pages/login_page.dart | https://raw.githubusercontent.com/GilaFrider/chat_app/9f5f4d7/lib/pages/login_page.dart | GilaFrider/chat_app 9f5f4d7 lib/pages/login_page.dart | true | 200 | 4,414 | import 'package:chat_app/components/my_button.dart';
import 'package:chat_app/components/my_text_field.dart';
import 'package:chat_app/pages/home_page.dart';
import 'package:chat_app/pages/register_page.dart';
import 'package:chat_app/services/auth/auth_service.dart';
import 'package:flutter/material.dart';
class Logi... | 0 |
marcosgianetti/PetsApp | 3b42695 | pets_app/lib/ui/pages/login/controller/login_controller.dart | Dart | www.github.com/marcosgianetti/PetsApp/tree/main/pets_app/lib/ui/pages/login/controller/login_controller.dart | https://raw.githubusercontent.com/marcosgianetti/PetsApp/3b42695/pets_app/lib/ui/pages/login/controller/login_controller.dart | marcosgianetti/PetsApp 3b42695 pets_app/lib/ui/pages/login/controller/login_controller.dart | true | 200 | 2,897 | import 'package:flutter/material.dart';
import 'package:mobx/mobx.dart';
import 'package:pets_app/data/provider/cacheLogin/cache_login.dart';
import 'package:pets_app/domain/entities/entities.dart';
import '../../../../data/api/api.dart';
import '../../../../data/end_points.dart';
part 'login_controller.g.dart';
///... | 6 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.