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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
OmarMFarouk/KomiAdmin | 7943aa6 | lib/models/offerwall_model.dart | Dart | www.github.com/OmarMFarouk/KomiAdmin/tree/main/lib/models/offerwall_model.dart | https://raw.githubusercontent.com/OmarMFarouk/KomiAdmin/7943aa6/lib/models/offerwall_model.dart | OmarMFarouk/KomiAdmin 7943aa6 lib/models/offerwall_model.dart | true | 200 | 2,063 | /*
// Example Usage
Map<String, dynamic> map = jsonDecode(<myJSONString>);
var myRootNode = Root.fromJson(map);
*/
class ActivatedOfferwall {
String? id;
String? name;
String? image;
String? url;
String? rate;
String? status;
String? skin;
ActivatedOfferwall(
{this.id,
this.name,
thi... | 2 |
apiorno/riders_app | 69c52dc | lib/main.dart | Dart | www.github.com/apiorno/riders_app/tree/main/lib/main.dart | https://raw.githubusercontent.com/apiorno/riders_app/69c52dc/lib/main.dart | apiorno/riders_app 69c52dc lib/main.dart | true | 200 | 1,309 | import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:riders_app/infoHandler/app_info.dart';
import 'package:riders_app/splashScreen/splash_screen.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();... | 3 |
vinitkr28/PlaygroundFlutterDart | 88e49d7 | udemy_flutter_and_dart_the_complete_guide/section2/lib/dice_roller.dart | Dart | www.github.com/vinitkr28/PlaygroundFlutterDart/tree/main/udemy_flutter_and_dart_the_complete_guide/section2/lib/dice_roller.dart | https://raw.githubusercontent.com/vinitkr28/PlaygroundFlutterDart/88e49d7/udemy_flutter_and_dart_the_complete_guide/section2/lib/dice_roller.dart | vinitkr28/PlaygroundFlutterDart 88e49d7 udemy_flutter_and_dart_the_complete_guide/section2/lib/dice_roller.dart | true | 200 | 1,215 | import 'dart:math';
import 'package:flutter/material.dart';
final randomizer = Random();
class DiceRoller extends StatefulWidget {
const DiceRoller({super.key});
@override
State<DiceRoller> createState() => _DiceRollerState();
}
class _DiceRollerState extends State<DiceRoller> {
var activeDiceImage = 'ass... | 0 |
miracle7937/kaltani_ms | 0765942 | lib/utils/reuseable/transfer_card.dart | Dart | www.github.com/miracle7937/kaltani_ms/tree/main/lib/utils/reuseable/transfer_card.dart | https://raw.githubusercontent.com/miracle7937/kaltani_ms/0765942/lib/utils/reuseable/transfer_card.dart | miracle7937/kaltani_ms 0765942 lib/utils/reuseable/transfer_card.dart | true | 200 | 5,221 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:kaltani_ms/utils/reuseable/card_bg.dart';
import '../../logic/model/transfer_list_model.dart';
import '../colors.dart';
class TransferCard extends StatelessWidget {
final TransferHistory... | 4 |
LucasFerreiraJs/flutter-dw-barbershop | d12d5e1 | lib/src/features/schedules/schedules_page.dart | Dart | www.github.com/LucasFerreiraJs/flutter-dw-barbershop/tree/main/lib/src/features/schedules/schedules_page.dart | https://raw.githubusercontent.com/LucasFerreiraJs/flutter-dw-barbershop/d12d5e1/lib/src/features/schedules/schedules_page.dart | LucasFerreiraJs/flutter-dw-barbershop d12d5e1 lib/src/features/schedules/schedules_page.dart | true | 200 | 6,799 | import 'package:dw_barbershop/src/core/ui/barbershop_icons.dart';
import 'package:dw_barbershop/src/core/ui/constants.dart';
import 'package:dw_barbershop/src/core/ui/helper/form_helper.dart';
import 'package:dw_barbershop/src/core/ui/helper/message.dart';
import 'package:dw_barbershop/src/core/ui/widgets/avatar_widget... | 7 |
RobertSzmit/sports_club_flutter | 022df11 | lib/app/models/news_item_model.dart | Dart | www.github.com/RobertSzmit/sports_club_flutter/tree/main/lib/app/models/news_item_model.dart | https://raw.githubusercontent.com/RobertSzmit/sports_club_flutter/022df11/lib/app/models/news_item_model.dart | RobertSzmit/sports_club_flutter 022df11 lib/app/models/news_item_model.dart | true | 200 | 433 | import 'package:freezed_annotation/freezed_annotation.dart';
part 'news_item_model.freezed.dart';
part 'news_item_model.g.dart';
@freezed
class NewsItem with _$NewsItem {
const factory NewsItem({
required String id,
required String title,
required String content,
String? imageUrl,
String? detail... | 2 |
octav8us/PKCE-Oauth-with-flutter | 1631fa7 | lib/login_web_view.dart | Dart | www.github.com/octav8us/PKCE-Oauth-with-flutter/tree/main/lib/login_web_view.dart | https://raw.githubusercontent.com/octav8us/PKCE-Oauth-with-flutter/1631fa7/lib/login_web_view.dart | octav8us/PKCE-Oauth-with-flutter 1631fa7 lib/login_web_view.dart | true | 200 | 3,158 | import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:pkce_oauth/challenge_generator.dart';
import 'package:webview_flutter/webview_flutter.dart';
import '/api_constants.dart' as constants;
import 'package:http/http.dart' as http;
class LoginWebViewApp extends StatefulWidget {
const LoginW... | 1 |
Jmendozase6/yes_no_flutter | eb17239 | lib/presentation/screens/chat/chat_screen.dart | Dart | www.github.com/Jmendozase6/yes_no_flutter/tree/main/lib/presentation/screens/chat/chat_screen.dart | https://raw.githubusercontent.com/Jmendozase6/yes_no_flutter/eb17239/lib/presentation/screens/chat/chat_screen.dart | Jmendozase6/yes_no_flutter eb17239 lib/presentation/screens/chat/chat_screen.dart | true | 200 | 2,505 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:yes_no_app/domain/entities/message.dart';
import 'package:yes_no_app/presentation/providers/chat/chat_provider.dart';
import 'package:yes_no_app/presentation/providers/theme/theme_provider.dart';
import 'package:yes_no_app/... | 3 |
httpfefe/logicaDeProgramacaoComDart | 0d9bf7f | estruturas de controle/switch.dart | Dart | www.github.com/httpfefe/logicaDeProgramacaoComDart/tree/main/estruturas de controle/switch.dart | https://raw.githubusercontent.com/httpfefe/logicaDeProgramacaoComDart/0d9bf7f/estruturas%20de%20controle/switch.dart | httpfefe/logicaDeProgramacaoComDart 0d9bf7f estruturas de controle/switch.dart | true | 200 | 777 | import 'dart:math';
main() {
//selecoes multiplas, a expressao associada a ele nao e uma true ou false, no switch vc recebe um valor e esse valor e usado com selecao multipla
var nota = Random().nextInt(11);
print('a nota sorteada foi $nota');
switch (nota) {
case 10:
print('vc foi otimo!!!');
... | 0 |
nagendrainvweb/moneyProfit | 218a368 | lib/model/user_doc_data.dart | Dart | www.github.com/nagendrainvweb/moneyProfit/tree/main/lib/model/user_doc_data.dart | https://raw.githubusercontent.com/nagendrainvweb/moneyProfit/218a368/lib/model/user_doc_data.dart | nagendrainvweb/moneyProfit 218a368 lib/model/user_doc_data.dart | true | 200 | 938 | class UserDocData {
String id;
String userId;
String documentType;
String documentImage;
String addedonDate;
String addedonTime;
UserDocData(
{this.id,
this.userId,
this.documentType,
this.documentImage,
this.addedonDate,
this.addedonTime});
UserDocData.fromJson(Map... | 5 |
DianaPajon/prompts | 9c233e3 | prompts/lib/prompts/view/chat/widgets/ChatBubble.dart | Dart | www.github.com/DianaPajon/prompts/tree/main/prompts/lib/prompts/view/chat/widgets/ChatBubble.dart | https://raw.githubusercontent.com/DianaPajon/prompts/9c233e3/prompts/lib/prompts/view/chat/widgets/ChatBubble.dart | DianaPajon/prompts 9c233e3 prompts/lib/prompts/view/chat/widgets/ChatBubble.dart | true | 200 | 1,172 | import 'package:flutter/material.dart';
class ChatBubble extends StatelessWidget {
const ChatBubble({
Key? key,
required this.text,
required this.isCurrentUser,
}) : super(key: key);
final String text;
final bool isCurrentUser;
Widget build(BuildContext context) {
return Padding(
// add so... | 4 |
badshamasala/crypto-app | b3c022c | lib/main.dart | Dart | www.github.com/badshamasala/crypto-app/tree/main/lib/main.dart | https://raw.githubusercontent.com/badshamasala/crypto-app/b3c022c/lib/main.dart | badshamasala/crypto-app b3c022c lib/main.dart | true | 200 | 1,743 | import 'package:crypto_app/Screens/manage_wallet.dart';
import 'package:crypto_app/Screens/settings.dart';
import 'package:crypto_app/Screens/theme.dart';
import 'package:crypto_app/Screens/transaction_history.dart';
import 'package:crypto_app/onboarding_screen.dart';
import 'package:flutter/material.dart';
import 'pac... | 7 |
atroverse/atroverse | ef405b8 | lib/Screens/FavoriteScreen.dart | Dart | www.github.com/atroverse/atroverse/tree/main/lib/Screens/FavoriteScreen.dart | https://raw.githubusercontent.com/atroverse/atroverse/ef405b8/lib/Screens/FavoriteScreen.dart | atroverse/atroverse ef405b8 lib/Screens/FavoriteScreen.dart | true | 200 | 525 | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../Controllers/FavoriteController.dart';
import '../Plugins/lib2/examples/animated_header.dart';
class FavoriteScreen extends StatelessWidget {
final controller = Get.find<FavoriteController>();
FavoriteScreen({Key? key}) : super(key:... | 2 |
Good-rice-soup/Geo_math_lib | acbe798 | lib/geo_math.dart | Dart | www.github.com/Good-rice-soup/Geo_math_lib/tree/main/lib/geo_math.dart | https://raw.githubusercontent.com/Good-rice-soup/Geo_math_lib/acbe798/lib/geo_math.dart | Good-rice-soup/Geo_math_lib acbe798 lib/geo_math.dart | true | 200 | 5,290 | import 'dart:math' as math;
import 'package:google_maps_flutter_platform_interface/google_maps_flutter_platform_interface.dart';
/*
https://github.com/juanxme/google_maps_flutter_platform_interface/blob/master/lib/src/types/location.dart
peace of theory about Earth radius
https://en.wikipedia.org/wiki/Great-circle_di... | 6 |
aaron-t-9/COMP3717 | e345825 | Exams/FinalExam/3717_final/lib/item_card_view.dart | Dart | www.github.com/aaron-t-9/COMP3717/tree/main/Exams/FinalExam/3717_final/lib/item_card_view.dart | https://raw.githubusercontent.com/aaron-t-9/COMP3717/e345825/Exams/FinalExam/3717_final/lib/item_card_view.dart | aaron-t-9/COMP3717 e345825 Exams/FinalExam/3717_final/lib/item_card_view.dart | true | 200 | 790 | import 'package:flutter/material.dart';
class ItemCard extends StatefulWidget {
final playingCard;
const ItemCard({
Key? key,
required this.playingCard,
}) : super(key: key);
@override
State<ItemCard> createState() => _ItemCardState();
}
class _ItemCardState extends State<ItemCard> {
@override
... | 1 |
Whaleman0423/bottom_bar_provider | 86a3a35 | lib/main.dart | Dart | www.github.com/Whaleman0423/bottom_bar_provider/tree/main/lib/main.dart | https://raw.githubusercontent.com/Whaleman0423/bottom_bar_provider/86a3a35/lib/main.dart | Whaleman0423/bottom_bar_provider 86a3a35 lib/main.dart | true | 200 | 784 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'screens/home_screen.dart';
import 'screens/second_screen.dart';
import 'daos/navigation_status_dao.dart';
void main() {
runApp(MultiProvider(providers: [
ChangeNotifierProvider(
create: (_) => NavigationStatusDao(),
... | 3 |
Muhammedys/FoodDeliveryApp | 71ee14b | lib/pages/food/popular_food_details.dart | Dart | www.github.com/Muhammedys/FoodDeliveryApp/tree/main/lib/pages/food/popular_food_details.dart | https://raw.githubusercontent.com/Muhammedys/FoodDeliveryApp/71ee14b/lib/pages/food/popular_food_details.dart | Muhammedys/FoodDeliveryApp 71ee14b lib/pages/food/popular_food_details.dart | true | 200 | 6,868 | import 'package:flutter/material.dart';
import 'package:food_delivery/controllers/cart_controller.dart';
import 'package:food_delivery/controllers/popular_product_controller.dart';
import 'package:food_delivery/pages/home/main_food_page.dart';
import 'package:food_delivery/utils/app_constants.dart';
import 'package:foo... | 0 |
fidamohammed/flutter_app | f70a143 | lib/screens/categories.dart | Dart | www.github.com/fidamohammed/flutter_app/tree/main/lib/screens/categories.dart | https://raw.githubusercontent.com/fidamohammed/flutter_app/f70a143/lib/screens/categories.dart | fidamohammed/flutter_app f70a143 lib/screens/categories.dart | true | 200 | 4,369 |
import 'package:adaptive_theme/adaptive_theme.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:first_app/components/category_grid_item.dart';
import 'package:first_app/model/category.dart';
import 'package:first_app/navigation/navigation_service.dart';
import 'package:first_app/providers/categ... | 5 |
Math-Barros/sirvice-app | d7a0ce7 | lib/freelancers/widgets/freelancer_search_delegate.dart | Dart | www.github.com/Math-Barros/sirvice-app/tree/main/lib/freelancers/widgets/freelancer_search_delegate.dart | https://raw.githubusercontent.com/Math-Barros/sirvice-app/d7a0ce7/lib/freelancers/widgets/freelancer_search_delegate.dart | Math-Barros/sirvice-app d7a0ce7 lib/freelancers/widgets/freelancer_search_delegate.dart | true | 200 | 3,386 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:sirvice_app/freelancers/freelancer_provider.dart';
import 'package:sirvice_app/global/widgets/sirvice_image.dart';
import 'package:sirvice_app/localization/localization.dart';
class FreelancerSearchDelegate extends SearchD... | 4 |
vishag002/u_tube_video_downloader | f8af62e | lib/models/api_model.dart | Dart | www.github.com/vishag002/u_tube_video_downloader/tree/main/lib/models/api_model.dart | https://raw.githubusercontent.com/vishag002/u_tube_video_downloader/f8af62e/lib/models/api_model.dart | vishag002/u_tube_video_downloader f8af62e lib/models/api_model.dart | true | 200 | 2,835 | import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
class YouTubeToMp3Service {
final String _baseUrl = 'https://youtube-to-mp315.p.rapidapi.com';
final String _apiKey = '9621e3954amsh283d94076b12d61p129b7bjsn98fdb423a782';
Future<Map<String, dynamic>> getStat... | 6 |
CAVM189/las_flores | e0cd0b4 | lib/UI/otros/bases.dart | Dart | www.github.com/CAVM189/las_flores/tree/main/lib/UI/otros/bases.dart | https://raw.githubusercontent.com/CAVM189/las_flores/e0cd0b4/lib/UI/otros/bases.dart | CAVM189/las_flores e0cd0b4 lib/UI/otros/bases.dart | true | 200 | 3,790 | import 'package:flutter/material.dart';
import 'package:las_flores/UI/actualizar/actualizarBase.dart';
import 'package:las_flores/UI/items/itemBase.dart';
import 'package:las_flores/bd/mongodb.dart';
import 'package:las_flores/modelos/modelos.dart';
class bases extends StatefulWidget {
@override
_basesState create... | 2 |
dien2810/kindergarten_app | 4c6d8a7 | lib/src/features/student/models/daily_routine/daily_routine_model.dart | Dart | www.github.com/dien2810/kindergarten_app/tree/main/lib/src/features/student/models/daily_routine/daily_routine_model.dart | https://raw.githubusercontent.com/dien2810/kindergarten_app/4c6d8a7/lib/src/features/student/models/daily_routine/daily_routine_model.dart | dien2810/kindergarten_app 4c6d8a7 lib/src/features/student/models/daily_routine/daily_routine_model.dart | true | 200 | 1,073 | import 'package:kindergarten_app/src/features/student/models/daily_routine/routine_entry_model.dart';
class DailyRoutineModel{
final String? id;
final String classId;
final String dailyRoutineName;
final Map<String, RoutineEntryModel> routine;
DailyRoutineModel({
this.id,
required this.classId, requ... | 7 |
Nargon2904/corp8 | c9d0824 | lib/pages/newrec_page.dart | Dart | www.github.com/Nargon2904/corp8/tree/main/lib/pages/newrec_page.dart | https://raw.githubusercontent.com/Nargon2904/corp8/c9d0824/lib/pages/newrec_page.dart | Nargon2904/corp8 c9d0824 lib/pages/newrec_page.dart | true | 200 | 3,217 | import 'package:corp8/pages/home_page.dart';
import 'package:flutter/material.dart';
import '../models/rec_list.dart';
class NewRecPage extends StatelessWidget {
const NewRecPage({super.key});
@override
Widget build(BuildContext context) {
final TextEditingController descController = TextEditingController();... | 1 |
master-wayne7/master-vpn | 3d57eca | lib/app/modules/location/controllers/location_controller.dart | Dart | www.github.com/master-wayne7/master-vpn/tree/main/lib/app/modules/location/controllers/location_controller.dart | https://raw.githubusercontent.com/master-wayne7/master-vpn/3d57eca/lib/app/modules/location/controllers/location_controller.dart | master-wayne7/master-vpn 3d57eca lib/app/modules/location/controllers/location_controller.dart | true | 200 | 1,365 | import 'package:get/get.dart';
import 'package:master_vpn/app/data/models/vpn_info_model.dart';
import 'package:master_vpn/app/modules/home/controllers/home_controller.dart';
import 'package:master_vpn/app/repositories/vpn_repository.dart';
import 'package:master_vpn/app/services/app_preferences.dart';
import 'package:... | 3 |
wahyudicho/kelompok7 | 0276d85 | lib/app/modules/screen/views/screen_view.dart | Dart | www.github.com/wahyudicho/kelompok7/tree/main/lib/app/modules/screen/views/screen_view.dart | https://raw.githubusercontent.com/wahyudicho/kelompok7/0276d85/lib/app/modules/screen/views/screen_view.dart | wahyudicho/kelompok7 0276d85 lib/app/modules/screen/views/screen_view.dart | true | 200 | 2,999 | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../controllers/screen_controller.dart';
class ScreenView extends GetView<ScreenController> {
const ScreenView({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xFF003... | 0 |
michael-stac/blogpost | db6561d | lib/utilities/create_error_screen.dart | Dart | www.github.com/michael-stac/blogpost/tree/main/lib/utilities/create_error_screen.dart | https://raw.githubusercontent.com/michael-stac/blogpost/db6561d/lib/utilities/create_error_screen.dart | michael-stac/blogpost db6561d lib/utilities/create_error_screen.dart | true | 200 | 1,599 | import 'package:blogapp/shared_services/page_service.dart';
import 'package:blogapp/utilities/router.dart';
import 'package:flutter/material.dart';
import 'package:flutter_speed_dial/flutter_speed_dial.dart';
import '../src/blog/screens/create_blog_page.dart';
import 'appcolors.dart';
class CreateErrorScreen extends S... | 5 |
vidybaskar/Spotify-Playlist-Duel | e2b8f70 | Project Files/lib/pages/loading.dart | Dart | www.github.com/vidybaskar/Spotify-Playlist-Duel/tree/main/Project Files/lib/pages/loading.dart | https://raw.githubusercontent.com/vidybaskar/Spotify-Playlist-Duel/e2b8f70/Project%20Files/lib/pages/loading.dart | vidybaskar/Spotify-Playlist-Duel e2b8f70 Project Files/lib/pages/loading.dart | true | 200 | 327 | import 'package:flutter/material.dart';
class loading extends StatefulWidget {
@override
_loadingState createState() => _loadingState();
}
class _loadingState extends State<loading> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Text('LOADING')),
);
... | 4 |
woogi-kang/leetcode-dart | 8f59c64 | src/sliding_window/longest_substring_without_repeating_characters.dart | Dart | www.github.com/woogi-kang/leetcode-dart/tree/main/src/sliding_window/longest_substring_without_repeating_characters.dart | https://raw.githubusercontent.com/woogi-kang/leetcode-dart/8f59c64/src/sliding_window/longest_substring_without_repeating_characters.dart | woogi-kang/leetcode-dart 8f59c64 src/sliding_window/longest_substring_without_repeating_characters.dart | true | 200 | 793 | import 'dart:math';
import 'dart:collection';
import '../utils.dart';
class Solution {
int lengthOfLongestSubstring(String s) {
var l = 0;
var r = 0;
var maxLength = 0;
var subS = '';
var map = HashMap<String, int>();
while(r < s.length) {
if(map[s[r]] != 0) {
subS = su... | 6 |
bakamedi/digital_contract | 4f2de74 | lib/app/presentation/modules/splash/controller/splash_state.dart | Dart | www.github.com/bakamedi/digital_contract/tree/main/lib/app/presentation/modules/splash/controller/splash_state.dart | https://raw.githubusercontent.com/bakamedi/digital_contract/4f2de74/lib/app/presentation/modules/splash/controller/splash_state.dart | bakamedi/digital_contract 4f2de74 lib/app/presentation/modules/splash/controller/splash_state.dart | true | 200 | 381 | import 'package:flutter/material.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
part 'splash_state.freezed.dart';
@freezed
class SplashState with _$SplashState {
// ignore: unused_element
const SplashState._();
const factory SplashState({
BuildContext? context,
}) = _SplashState;
s... | 7 |
QassemAbied/QAK_Movies | 1543de7 | lib/domain/entities/favorites_entities.dart | Dart | www.github.com/QassemAbied/QAK_Movies/tree/main/lib/domain/entities/favorites_entities.dart | https://raw.githubusercontent.com/QassemAbied/QAK_Movies/1543de7/lib/domain/entities/favorites_entities.dart | QassemAbied/QAK_Movies 1543de7 lib/domain/entities/favorites_entities.dart | true | 200 | 495 | import 'package:equatable/equatable.dart';
import 'package:untitled3/domain/entities/movie_entities.dart';
class FavoritesEntities extends Equatable {
final int page;
final List<MovieEntities> results;
final int total_pages;
final int total_results;
FavoritesEntities(
{required this.page,
requir... | 2 |
NovairMikhail14/jobsque | 04e5ba9 | lib/presentation/end_page/nothing_saved_View.dart | Dart | www.github.com/NovairMikhail14/jobsque/tree/main/lib/presentation/end_page/nothing_saved_View.dart | https://raw.githubusercontent.com/NovairMikhail14/jobsque/04e5ba9/lib/presentation/end_page/nothing_saved_View.dart | NovairMikhail14/jobsque 04e5ba9 lib/presentation/end_page/nothing_saved_View.dart | true | 200 | 2,210 | import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:jobsque/presentation/widgets/main_button.dart';
import 'package:jobsque/presentation/widgets/main_textfield.dart';
import 'package:jobsque/presentation/widgets/main_titleblock.dart';
import 'package:jobsque/resources/... | 1 |
HKTareen/practitioner | f26a2ff | lib/app/shared_widgets/component.dart | Dart | www.github.com/HKTareen/practitioner/tree/main/lib/app/shared_widgets/component.dart | https://raw.githubusercontent.com/HKTareen/practitioner/f26a2ff/lib/app/shared_widgets/component.dart | HKTareen/practitioner f26a2ff lib/app/shared_widgets/component.dart | true | 200 | 5,335 | import 'dart:io';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:sizer/sizer.dart';
import '../config/app_colors.dart';
import '../config/app_constants.dart';
import '../core/BoxDecoration.dart';
import '../util/util.dart';
import 'Text.dart';
import 'Textfeld.dart';
class App... | 4 |
mahammadosmanov/fake_store | b4fbb6a | lib/features/store/presentation/pages/store/store.dart | Dart | www.github.com/mahammadosmanov/fake_store/tree/main/lib/features/store/presentation/pages/store/store.dart | https://raw.githubusercontent.com/mahammadosmanov/fake_store/b4fbb6a/lib/features/store/presentation/pages/store/store.dart | mahammadosmanov/fake_store b4fbb6a lib/features/store/presentation/pages/store/store.dart | true | 200 | 1,038 | import 'package:flutter/material.dart';
import 'package:test_task/features/store/presentation/pages/home/home.dart';
import 'package:test_task/features/store/presentation/pages/profile/profile.dart';
import 'package:test_task/features/store/presentation/widgets/bottom_bar.dart';
class StoreView extends StatelessWidget... | 3 |
SwappyUPV/Swappy-Front | 182fd9b | lib/features/add_product/presentation/screens/upload_product_screen.dart | Dart | www.github.com/SwappyUPV/Swappy-Front/tree/main/lib/features/add_product/presentation/screens/upload_product_screen.dart | https://raw.githubusercontent.com/SwappyUPV/Swappy-Front/182fd9b/lib/features/add_product/presentation/screens/upload_product_screen.dart | SwappyUPV/Swappy-Front 182fd9b lib/features/add_product/presentation/screens/upload_product_screen.dart | true | 200 | 19,880 | import 'package:flutter/material.dart';
import 'package:pin/features/add_product/presentation/widgets/upload_product_app_bar.dart';
import '/core/services/product.dart';
import 'package:pin/features/add_product/presentation/widgets/category_selector.dart';
import 'package:pin/features/add_product/presentation/widgets/p... | 6 |
TejaEkila/Flutter_widgets | 47e39f5 | lib/widgets/silverappbar.dart | Dart | www.github.com/TejaEkila/Flutter_widgets/tree/main/lib/widgets/silverappbar.dart | https://raw.githubusercontent.com/TejaEkila/Flutter_widgets/47e39f5/lib/widgets/silverappbar.dart | TejaEkila/Flutter_widgets 47e39f5 lib/widgets/silverappbar.dart | true | 200 | 2,320 |
import 'package:flutter/material.dart';
class SliverAppBarExample extends StatefulWidget {
const SliverAppBarExample({super.key});
@override
State<SliverAppBarExample> createState() => _SliverAppBarExampleState();
}
class _SliverAppBarExampleState extends State<SliverAppBarExample> {
@override
Widget bui... | 2 |
wail199900/Flutter | aa60f23 | lib/pages/profile_page.dart | Dart | www.github.com/wail199900/Flutter/tree/main/lib/pages/profile_page.dart | https://raw.githubusercontent.com/wail199900/Flutter/aa60f23/lib/pages/profile_page.dart | wail199900/Flutter aa60f23 lib/pages/profile_page.dart | true | 200 | 15,114 | // ignore_for_file: prefer_const_constructors, use_build_context_synchronously
import 'package:activities_app/pages/add_activity.dart';
import 'package:flutter/material.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:intl/intl.dart';
cla... | 7 |
Wetshibrose/XiaoMa | 483b6a0 | xiaoma/lib/home/screens/confirm_ride_screen.dart | Dart | www.github.com/Wetshibrose/XiaoMa/tree/main/xiaoma/lib/home/screens/confirm_ride_screen.dart | https://raw.githubusercontent.com/Wetshibrose/XiaoMa/483b6a0/xiaoma/lib/home/screens/confirm_ride_screen.dart | Wetshibrose/XiaoMa 483b6a0 xiaoma/lib/home/screens/confirm_ride_screen.dart | true | 200 | 8,516 | import 'package:flutter/material.dart';
import 'package:flutter_mobx/flutter_mobx.dart';
import 'package:xiaoma/chat/chat.dart';
import 'package:xiaoma/app/constants/constants.dart';
import 'package:xiaoma/home/home.dart';
import 'package:xiaoma/profile/profile.dart';
import 'package:xiaoma/app/themes/themes.dart';
imp... | 1 |
megavvve/online_shop | 5875011 | lib/presentation/blocs/product_bloc/bloc/product_bloc.dart | Dart | www.github.com/megavvve/online_shop/tree/main/lib/presentation/blocs/product_bloc/bloc/product_bloc.dart | https://raw.githubusercontent.com/megavvve/online_shop/5875011/lib/presentation/blocs/product_bloc/bloc/product_bloc.dart | megavvve/online_shop 5875011 lib/presentation/blocs/product_bloc/bloc/product_bloc.dart | true | 200 | 691 | import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:equatable/equatable.dart';
import 'package:online_shop/data/repository/products_data_repository.dart';
import 'package:online_shop/domain/models/product/product.dart';
part 'product_event.dart';
part 'product_state.dart';
class ProductBloc extends Bloc<... | 0 |
Azzam-dev/event_management | 82b41dc | lib/mainNavBar.dart | Dart | www.github.com/Azzam-dev/event_management/tree/main/lib/mainNavBar.dart | https://raw.githubusercontent.com/Azzam-dev/event_management/82b41dc/lib/mainNavBar.dart | Azzam-dev/event_management 82b41dc lib/mainNavBar.dart | true | 200 | 1,638 | import 'package:event_management/homePage.dart';
import 'package:event_management/notificationsPage.dart';
import 'package:event_management/profilePage.dart';
import 'package:event_management/scanPage.dart';
import 'package:flutter/material.dart';
import 'package:google_nav_bar/google_nav_bar.dart';
class MainNavBar e... | 5 |
MdLimon123/PraniSeba | cf96b76 | lib/view/cow_registraton/DiseaseInfo.dart | Dart | www.github.com/MdLimon123/PraniSeba/tree/main/lib/view/cow_registraton/DiseaseInfo.dart | https://raw.githubusercontent.com/MdLimon123/PraniSeba/cf96b76/lib/view/cow_registraton/DiseaseInfo.dart | MdLimon123/PraniSeba cf96b76 lib/view/cow_registraton/DiseaseInfo.dart | true | 200 | 13,756 | import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:intl/intl.dart';
import 'package:prani_sheba/Common/Helper.dart';
import 'package:prani_sheba/common/Common.dart';
import 'package:prani_sheba/common/CommonColor.dart';
import 'package:prani_sheba/ma... | 4 |
tolupost/Posterbox | 67d0a19 | lib/sendPackage/screens/sendPackagescreen3.dart | Dart | www.github.com/tolupost/Posterbox/tree/main/lib/sendPackage/screens/sendPackagescreen3.dart | https://raw.githubusercontent.com/tolupost/Posterbox/67d0a19/lib/sendPackage/screens/sendPackagescreen3.dart | tolupost/Posterbox 67d0a19 lib/sendPackage/screens/sendPackagescreen3.dart | true | 200 | 17,382 |
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:posterbox/common/widgets/appbar.dart';
import 'package:posterbox/common/widgets/dropdownMenu.dart';
import 'package:posterbox/sendPackage/screens/requestDetails.dart';
import 'package:posterbox/sendPack... | 7 |
ShankaVisal/mobile_torch | ca175a1 | lib/homeScreen.dart | Dart | www.github.com/ShankaVisal/mobile_torch/tree/main/lib/homeScreen.dart | https://raw.githubusercontent.com/ShankaVisal/mobile_torch/ca175a1/lib/homeScreen.dart | ShankaVisal/mobile_torch ca175a1 lib/homeScreen.dart | true | 200 | 5,173 | import 'package:flutter/material.dart';
import 'package:torch_light/torch_light.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({super.key});
@override
State<HomeScreen> createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> with SingleTickerProviderStateMixin... | 3 |
Boburbek6010/console_shopping_app | ddf9cea | lib/Menus/setting_menu.dart | Dart | www.github.com/Boburbek6010/console_shopping_app/tree/main/lib/Menus/setting_menu.dart | https://raw.githubusercontent.com/Boburbek6010/console_shopping_app/ddf9cea/lib/Menus/setting_menu.dart | Boburbek6010/console_shopping_app ddf9cea lib/Menus/setting_menu.dart | true | 200 | 826 | import 'dart:io';
import 'package:console_shopping_app/Services/extention_service.dart';
import '../Services/navigation_service.dart';
import 'home_menu.dart';
import 'language_menu.dart';
import 'main_menu.dart';
class SettingMenu extends Menu{
static const id = "/settings_menu";
Future<void> selectMenu(Strin... | 6 |
AmirBerenji/todo_proj | 73cdaf0 | lib/features/todo/pages/homepage.dart | Dart | www.github.com/AmirBerenji/todo_proj/tree/main/lib/features/todo/pages/homepage.dart | https://raw.githubusercontent.com/AmirBerenji/todo_proj/73cdaf0/lib/features/todo/pages/homepage.dart | AmirBerenji/todo_proj 73cdaf0 lib/features/todo/pages/homepage.dart | true | 200 | 6,993 | import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:flutter_vector_icons/flutter_vector_icons.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:todo_proj/common/utils/constants.dart';
import 'package:todo_proj/common/widgets/apps... | 1 |
boctory/hanbok | 0c23dac | lib/screens/home_screen.dart | Dart | www.github.com/boctory/hanbok/tree/main/lib/screens/home_screen.dart | https://raw.githubusercontent.com/boctory/hanbok/0c23dac/lib/screens/home_screen.dart | boctory/hanbok 0c23dac lib/screens/home_screen.dart | true | 200 | 10,066 | import 'package:flutter/material.dart';
import 'package:hanbok_app/constants/app_constants.dart';
import 'package:hanbok_app/screens/hanbok_selection_screen.dart';
import 'package:hanbok_app/screens/gallery_screen.dart';
import 'package:hanbok_app/utils/image_utils.dart';
import 'dart:io';
class HomeScreen extends Sta... | 2 |
Naveen-RS22/QAmaudit | 33afaa4 | lib/app/data/network/dto/GetAllActiveFactoryModel.dart | Dart | www.github.com/Naveen-RS22/QAmaudit/tree/main/lib/app/data/network/dto/GetAllActiveFactoryModel.dart | https://raw.githubusercontent.com/Naveen-RS22/QAmaudit/33afaa4/lib/app/data/network/dto/GetAllActiveFactoryModel.dart | Naveen-RS22/QAmaudit 33afaa4 lib/app/data/network/dto/GetAllActiveFactoryModel.dart | true | 200 | 1,117 | import 'dart:convert';
class GetAllActiveFactoryModel {
bool? isSuccess;
String? message;
List<Data>? data;
GetAllActiveFactoryModel({this.isSuccess, this.message, this.data});
GetAllActiveFactoryModel.fromJson(Map<String, dynamic> json) {
isSuccess = json['isSuccess'];
message = json['message'];
... | 0 |
sushant-soma/local-foodie | 4d09615 | lib/Database/db_handler.dart | Dart | www.github.com/sushant-soma/local-foodie/tree/main/lib/Database/db_handler.dart | https://raw.githubusercontent.com/sushant-soma/local-foodie/4d09615/lib/Database/db_handler.dart | sushant-soma/local-foodie 4d09615 lib/Database/db_handler.dart | true | 200 | 1,321 | import 'package:sqflite/sqflite.dart';
import 'package:path/path.dart';
import 'package:local_foodie/Model/user_class.dart';
class DatabaseHandler {
Future<Database> initDB() async {
String path = await getDatabasesPath();
String dbLocation = join(path, 'user.db');
print('DB Path---->' + dbLocation);
... | 5 |
Sohag-84/E-MART-App | 5a2ba04 | lib/views/screens/profile_screen/components/details_card.dart | Dart | www.github.com/Sohag-84/E-MART-App/tree/main/lib/views/screens/profile_screen/components/details_card.dart | https://raw.githubusercontent.com/Sohag-84/E-MART-App/5a2ba04/lib/views/screens/profile_screen/components/details_card.dart | Sohag-84/E-MART-App 5a2ba04 lib/views/screens/profile_screen/components/details_card.dart | true | 200 | 429 | import 'package:e_mart_app/consts/consts.dart';
Widget detailsCard(
{required String count, required String title, required double width}) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
count.text.fontFamily(bold).color(darkFontGrey).size(16).make(),
5.heightBox,
... | 4 |
Henil999/Intership | 77e3c3d | lib/data/models/academic_detail_model.dart | Dart | www.github.com/Henil999/Intership/tree/main/lib/data/models/academic_detail_model.dart | https://raw.githubusercontent.com/Henil999/Intership/77e3c3d/lib/data/models/academic_detail_model.dart | Henil999/Intership 77e3c3d lib/data/models/academic_detail_model.dart | true | 200 | 4,008 | import 'dart:convert';
// ignore_for_file: public_member_api_docs, sort_constructors_first
class AcademicDetailModel {
String studentId;
String institute;
String dept;
int? passingYrCurrent;
int passingYr10;
double percentage10;
String board10;
int? passingYr12;
double? percentage12;
String? boa... | 3 |
mvesparza/Ejercicios1.2_AplicacionesMoviles | a906739 | lib/pantallas/ejercicio1/ejercicio1.dart | Dart | www.github.com/mvesparza/Ejercicios1.2_AplicacionesMoviles/tree/main/lib/pantallas/ejercicio1/ejercicio1.dart | https://raw.githubusercontent.com/mvesparza/Ejercicios1.2_AplicacionesMoviles/a906739/lib/pantallas/ejercicio1/ejercicio1.dart | mvesparza/Ejercicios1.2_AplicacionesMoviles a906739 lib/pantallas/ejercicio1/ejercicio1.dart | true | 200 | 6,335 | import 'package:flutter/material.dart';
import '../../logica/logicaejer1.dart'; // Importa la lógica del ejercicio
class Ejercicio1Page extends StatefulWidget {
const Ejercicio1Page({super.key});
@override
State<Ejercicio1Page> createState() => _Ejercicio1PageState();
}
class _Ejercicio1PageState extends State... | 6 |
ashunasar/sample_app | 0e54a87 | lib/modules/home/views/home_screen.view.dart | Dart | www.github.com/ashunasar/sample_app/tree/main/lib/modules/home/views/home_screen.view.dart | https://raw.githubusercontent.com/ashunasar/sample_app/0e54a87/lib/modules/home/views/home_screen.view.dart | ashunasar/sample_app 0e54a87 lib/modules/home/views/home_screen.view.dart | true | 200 | 1,398 | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../../../shared/widgets/internet_connection_checker.dart';
import '../controllers/home_screen.controller.dart';
class HomeScreen extends StatelessWidget {
const HomeScreen({Key? key}) : super(key: key);
@override
Widget build(BuildCo... | 7 |
masanthimanshu/ott_app | 325bbe6 | lib/view/home/home_screen.dart | Dart | www.github.com/masanthimanshu/ott_app/tree/main/lib/view/home/home_screen.dart | https://raw.githubusercontent.com/masanthimanshu/ott_app/325bbe6/lib/view/home/home_screen.dart | masanthimanshu/ott_app 325bbe6 lib/view/home/home_screen.dart | true | 200 | 1,051 | import 'package:flutter/material.dart';
import 'package:ott_app/components/home/home_hero_scroller.dart';
import 'package:ott_app/components/home/home_movie_list.dart';
import 'package:ott_app/controller/content/content_controller.dart';
class HomeScreen extends StatelessWidget {
const HomeScreen({super.key});
@o... | 2 |
Thiago2807/TodoList | 7171d79 | TodoList_App/todolist_app/lib/main.dart | Dart | www.github.com/Thiago2807/TodoList/tree/main/TodoList_App/todolist_app/lib/main.dart | https://raw.githubusercontent.com/Thiago2807/TodoList/7171d79/TodoList_App/todolist_app/lib/main.dart | Thiago2807/TodoList 7171d79 TodoList_App/todolist_app/lib/main.dart | true | 200 | 1,765 | import 'package:todolist_app/presentation/screens/home/state/home_screen_state.dart';
import 'package:todolist_app/presentation/screens/list_tasks/state/list_task_state.dart';
import 'package:todolist_app/presentation/screens/add_task/state/add_task_state.dart';
import 'package:todolist_app/presentation/screens/auth/st... | 1 |
muranakar/sqlite_add_table | ddf7460 | lib/1_open_database_page.dart | Dart | www.github.com/muranakar/sqlite_add_table/tree/main/lib/1_open_database_page.dart | https://raw.githubusercontent.com/muranakar/sqlite_add_table/ddf7460/lib/1_open_database_page.dart | muranakar/sqlite_add_table ddf7460 lib/1_open_database_page.dart | true | 200 | 430 | import 'package:flutter/material.dart';
class OpenDatabasePage extends StatelessWidget {
const OpenDatabasePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('データベースを開く'),
),
body: const Center(
child: Text('... | 0 |
AyoShansala/ayodhya_wad_assignment | b8340d1 | lib/features/explore_screen/presentation/bloc/explore_bloc.dart | Dart | www.github.com/AyoShansala/ayodhya_wad_assignment/tree/main/lib/features/explore_screen/presentation/bloc/explore_bloc.dart | https://raw.githubusercontent.com/AyoShansala/ayodhya_wad_assignment/b8340d1/lib/features/explore_screen/presentation/bloc/explore_bloc.dart | AyoShansala/ayodhya_wad_assignment b8340d1 lib/features/explore_screen/presentation/bloc/explore_bloc.dart | true | 200 | 2,728 | import 'package:ayodhya_wad_assignment/core/usecase/usecase.dart';
import 'package:ayodhya_wad_assignment/features/explore_screen/domain/usecases/coupon_usecase.dart';
import 'package:ayodhya_wad_assignment/features/explore_screen/domain/usecases/vendor_usecase.dart';
import 'package:bloc/bloc.dart';
import 'package:eq... | 5 |
bannzai/Pilll | 2c37d4a | lib/utils/environment.dart | Dart | www.github.com/bannzai/Pilll/tree/main/lib/utils/environment.dart | https://raw.githubusercontent.com/bannzai/Pilll/2c37d4a/lib/utils/environment.dart | bannzai/Pilll 2c37d4a lib/utils/environment.dart | true | 200 | 941 | // ignore_for_file: constant_identifier_names
enum Flavor {
DEVELOP,
PRODUCTION,
LOCAL, // Local is special flavor for development with firebase:emulators
}
abstract class Environment {
static bool get isProduction => flavor == Flavor.PRODUCTION;
static bool get isDevelopment => flavor == Flavor.DEVELOP || ... | 4 |
macqueen01/glichu_flutter_frontend | 572787c | lib/src/UiComponents.dart/StaticLoading.dart | Dart | www.github.com/macqueen01/glichu_flutter_frontend/tree/main/lib/src/UiComponents.dart/StaticLoading.dart | https://raw.githubusercontent.com/macqueen01/glichu_flutter_frontend/572787c/lib/src/UiComponents.dart/StaticLoading.dart | macqueen01/glichu_flutter_frontend 572787c lib/src/UiComponents.dart/StaticLoading.dart | true | 200 | 673 | import 'package:flutter/material.dart';
import 'package:mockingjae2_mobile/src/components/icons.dart';
import 'package:mockingjae2_mobile/utils/colors.dart';
class LoadingView extends StatelessWidget {
const LoadingView({
super.key,
});
@override
Widget build(BuildContext context) {
return Container(
... | 7 |
Kodrillar/responsive_portfolio | 448ce33 | lib/src/core/widgets/rounded_container.dart | Dart | www.github.com/Kodrillar/responsive_portfolio/tree/main/lib/src/core/widgets/rounded_container.dart | https://raw.githubusercontent.com/Kodrillar/responsive_portfolio/448ce33/lib/src/core/widgets/rounded_container.dart | Kodrillar/responsive_portfolio 448ce33 lib/src/core/widgets/rounded_container.dart | true | 200 | 1,176 | import 'package:flutter/material.dart';
import 'package:portfolioapp_by_the_debo/src/core/constants.dart';
class RoundedContainer extends StatelessWidget {
const RoundedContainer(
{super.key,
this.image,
this.height,
this.width,
this.child,
this.shape = BoxShape.rectangle,
t... | 2 |
OtmanFakri/Quran | fdd3d58 | lib/Models/surahs.dart | Dart | www.github.com/OtmanFakri/Quran/tree/main/lib/Models/surahs.dart | https://raw.githubusercontent.com/OtmanFakri/Quran/fdd3d58/lib/Models/surahs.dart | OtmanFakri/Quran fdd3d58 lib/Models/surahs.dart | true | 200 | 2,621 | class surahs {
int? code;
String? status;
Data? datas;
surahs({this.code, this.status, this.datas});
surahs.fromJson(Map<String, dynamic> json) {
code = json['code'];
status = json['status'];
datas = json['data'] != null ? new Data.fromJson(json['data']) : null;
}
Map<String, dynamic> toJso... | 6 |
mehmettagil/cubtale | b1cbed8 | lib/injection.dart | Dart | www.github.com/mehmettagil/cubtale/tree/main/lib/injection.dart | https://raw.githubusercontent.com/mehmettagil/cubtale/b1cbed8/lib/injection.dart | mehmettagil/cubtale b1cbed8 lib/injection.dart | true | 200 | 2,359 | import 'package:cubtale/app_bloc/core/color_theme_bloc/color_theme_bloc.dart';
import 'package:cubtale/app_bloc/login/login_bloc.dart';
import 'package:cubtale/app_bloc/menu_burger/menu_burger_bloc.dart';
import 'package:cubtale/app_bloc/navigation/navigation_bloc.dart';
import 'package:cubtale/app_bloc/search/search_b... | 0 |
kylevgriffith/flight_booking_app | c365c3b | lib/app/checkout/view/checkout_screen.dart | Dart | www.github.com/kylevgriffith/flight_booking_app/tree/main/lib/app/checkout/view/checkout_screen.dart | https://raw.githubusercontent.com/kylevgriffith/flight_booking_app/c365c3b/lib/app/checkout/view/checkout_screen.dart | kylevgriffith/flight_booking_app c365c3b lib/app/checkout/view/checkout_screen.dart | true | 200 | 1,123 | import 'package:flight_booking_app/app/Home/view/home_screen.dart';
import 'package:flight_booking_app/app/Home/view/widgets/elevated_button_widget.dart';
import 'package:flutter/material.dart';
import 'widgets/appbar_widget.dart';
import 'widgets/row_list_widget.dart';
import 'widgets/time_label_card.dart';
class Che... | 1 |
BilalHajjar/north_delivery | 7c34e4a | lib/presentation/admin/setting/model/setting_model.dart | Dart | www.github.com/BilalHajjar/north_delivery/tree/main/lib/presentation/admin/setting/model/setting_model.dart | https://raw.githubusercontent.com/BilalHajjar/north_delivery/7c34e4a/lib/presentation/admin/setting/model/setting_model.dart | BilalHajjar/north_delivery 7c34e4a lib/presentation/admin/setting/model/setting_model.dart | true | 200 | 413 |
class SettingModel {
int? id;
String? phone;
String? facebook;
String? createdAt;
String? updatedAt;
SettingModel({this.id, this.phone, this.facebook, this.createdAt, this.updatedAt});
SettingModel.fromJson(Map<String, dynamic> json) {
id = json['id'];
phone = json['phone'];
facebook = json... | 5 |
KIT-Club/kit-schedule-v2 | 615a34e | lib/presentation/journey/home/components/school_schedule/school_schedule_item.dart | Dart | www.github.com/KIT-Club/kit-schedule-v2/tree/main/lib/presentation/journey/home/components/school_schedule/school_schedule_item.dart | https://raw.githubusercontent.com/KIT-Club/kit-schedule-v2/615a34e/lib/presentation/journey/home/components/school_schedule/school_schedule_item.dart | KIT-Club/kit-schedule-v2 615a34e lib/presentation/journey/home/components/school_schedule/school_schedule_item.dart | true | 200 | 2,835 | import 'package:flutter/material.dart';
import 'package:kit_schedule_v2/common/constants/theme_border.dart';
import 'package:kit_schedule_v2/common/utils/app_convert.dart';
import 'package:kit_schedule_v2/common/utils/export.dart';
import 'package:kit_schedule_v2/domain/models/student_schedule_model.dart';
import 'pack... | 3 |
mrwebbeast/products | f3f37b7 | lib/features/products/view/products_view.dart | Dart | www.github.com/mrwebbeast/products/tree/main/lib/features/products/view/products_view.dart | https://raw.githubusercontent.com/mrwebbeast/products/f3f37b7/lib/features/products/view/products_view.dart | mrwebbeast/products f3f37b7 lib/features/products/view/products_view.dart | true | 200 | 8,699 | import "dart:async";
import "package:flutter/material.dart";
import "package:mrwebbeast/features/products/model/product/product_data.dart";
import "package:mrwebbeast/features/products/controllers/products_controller.dart";
import "package:mrwebbeast/features/products/view/categories_dropdown.dart";
import "package:m... | 7 |
Kariimreda/ayadymisr | 44332d9 | ayadymisr/lib/Home/Ui/splashScreen.dart | Dart | www.github.com/Kariimreda/ayadymisr/tree/main/ayadymisr/lib/Home/Ui/splashScreen.dart | https://raw.githubusercontent.com/Kariimreda/ayadymisr/44332d9/ayadymisr/lib/Home/Ui/splashScreen.dart | Kariimreda/ayadymisr 44332d9 ayadymisr/lib/Home/Ui/splashScreen.dart | true | 200 | 1,069 | import 'package:ayadymisr/auth/screens/login_screen.dart';
import 'package:ayadymisr/core/global/my_colors.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
class SplashScreen extends StatefulWidget {
const SplashScreen({Key? key}) : super(key: key);
static const routeName = '/splash';
... | 4 |
salakoadeyemi/climate_pro | 752df84 | lib/pages/homepage.dart | Dart | www.github.com/salakoadeyemi/climate_pro/tree/main/lib/pages/homepage.dart | https://raw.githubusercontent.com/salakoadeyemi/climate_pro/752df84/lib/pages/homepage.dart | salakoadeyemi/climate_pro 752df84 lib/pages/homepage.dart | true | 200 | 6,745 | import 'package:flutter/material.dart';
import 'package:geolocator/geolocator.dart';
import '../models/api_service.dart';
import '../models/weather_model.dart';
class WeatherPage extends StatefulWidget {
@override
_WeatherPageState createState() => _WeatherPageState();
}
class _WeatherPageState extends State<Weat... | 2 |
khaledgomah/silent_space | 656582e | lib/app/cubits/language_cubit/language_cubit.dart | Dart | www.github.com/khaledgomah/silent_space/tree/main/lib/app/cubits/language_cubit/language_cubit.dart | https://raw.githubusercontent.com/khaledgomah/silent_space/656582e/lib/app/cubits/language_cubit/language_cubit.dart | khaledgomah/silent_space 656582e lib/app/cubits/language_cubit/language_cubit.dart | true | 200 | 864 | import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:meta/meta.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:silent_space/core/utils/service_locator.dart';
part 'language_state.dart';
class LanguageCubit extends Cubit<LanguageState> {
String _language = 'en';
late ... | 6 |
Mohammedzj2003/this_books | ea17c35 | lib/page/register_page.dart | Dart | www.github.com/Mohammedzj2003/this_books/tree/main/lib/page/register_page.dart | https://raw.githubusercontent.com/Mohammedzj2003/this_books/ea17c35/lib/page/register_page.dart | Mohammedzj2003/this_books ea17c35 lib/page/register_page.dart | true | 200 | 6,660 | import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:this_books/models/auth_model.dart';
import 'package:this_books/page/login_page.dart';
import 'package:this_books/shared/constants.dart';
import 'package:flutter_s... | 5 |
ldev1211/ap_03 | 7bd758c | lib/network/entity/top_100/top_100_entity.dart | Dart | www.github.com/ldev1211/ap_03/tree/main/lib/network/entity/top_100/top_100_entity.dart | https://raw.githubusercontent.com/ldev1211/ap_03/7bd758c/lib/network/entity/top_100/top_100_entity.dart | ldev1211/ap_03 7bd758c lib/network/entity/top_100/top_100_entity.dart | true | 200 | 468 | import 'package:ap_03_luongquocdien/network/entity/top_100/playlist_entity.dart';
import 'package:json_annotation/json_annotation.dart';
part 'top_100_entity.g.dart';
@JsonSerializable()
class Top100Entity{
final String? title;
final List<PlaylistEntity?>? items;
Top100Entity(this.title, this.items);
facto... | 1 |
Sonia-dev/simple_app_with_bloc | b3ae796 | lib/presentation/screens/images_screen.dart | Dart | www.github.com/Sonia-dev/simple_app_with_bloc/tree/main/lib/presentation/screens/images_screen.dart | https://raw.githubusercontent.com/Sonia-dev/simple_app_with_bloc/b3ae796/lib/presentation/screens/images_screen.dart | Sonia-dev/simple_app_with_bloc b3ae796 lib/presentation/screens/images_screen.dart | true | 200 | 2,674 | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:simple_app_with_bloc/business_logic/images_cubit.dart';
import 'package:simple_app_with_bloc/data/models/image.dart';
import 'package:simple_app_with_bloc/presentation/screens/image_item.dart';
class ImagesScreen e... | 3 |
jm-mdq-vd/MobileFootball | 24d461a | lib/blocs/resource_state.dart | Dart | www.github.com/jm-mdq-vd/MobileFootball/tree/main/lib/blocs/resource_state.dart | https://raw.githubusercontent.com/jm-mdq-vd/MobileFootball/24d461a/lib/blocs/resource_state.dart | jm-mdq-vd/MobileFootball 24d461a lib/blocs/resource_state.dart | true | 200 | 565 | part of 'resource_bloc.dart';
class ResourceState<Resource> extends Equatable {
const ResourceState({
this.status = ResourceStatus.initial,
List<Resource>? resources,
}) : resources = resources ?? const [];
final List<Resource> resources;
final ResourceStatus status;
@override
List<Object?> get p... | 0 |
HarryDeKat/Silvio | 7ad153a | lib/screens/career.dart | Dart | www.github.com/HarryDeKat/Silvio/tree/main/lib/screens/career.dart | https://raw.githubusercontent.com/HarryDeKat/Silvio/7ad153a/lib/screens/career.dart | HarryDeKat/Silvio 7ad153a lib/screens/career.dart | true | 200 | 6,131 | import 'package:flutter/material.dart';
import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart';
import 'package:intl/intl.dart';
import 'package:silvio/widgets/ads.dart';
import 'package:silvio/widgets/appbar.dart';
import 'package:provider/provider.dart';
import 'package:flutter_gen/gen_l1... | 7 |
angie-0708/DART-ADSO2873711 | 5778a4d | TRIMEsTRE2/ListasArreglos/ejerciciosGuia05/Matrices/ejercicioMatrices03.dart | Dart | www.github.com/angie-0708/DART-ADSO2873711/tree/main/TRIMEsTRE2/ListasArreglos/ejerciciosGuia05/Matrices/ejercicioMatrices03.dart | https://raw.githubusercontent.com/angie-0708/DART-ADSO2873711/5778a4d/TRIMEsTRE2/ListasArreglos/ejerciciosGuia05/Matrices/ejercicioMatrices03.dart | angie-0708/DART-ADSO2873711 5778a4d TRIMEsTRE2/ListasArreglos/ejerciciosGuia05/Matrices/ejercicioMatrices03.dart | true | 200 | 1,629 | import 'dart:io';
void main(){
//La compañía manufacturera Monte Real fábrica 5 artículos diferentes y se trabajan tres turnos por día, la compañía necesita obtener un reporte al final del día del total de la producción por artículo y el total de la producción por turno. Desarrollar un programa que pida al usuari... | 4 |
Fateme-Aghababaei/karat_habit_tracker_app | 9bf1ff6 | lib/viewmodel/habit_viewmodel.dart | Dart | www.github.com/Fateme-Aghababaei/karat_habit_tracker_app/tree/main/lib/viewmodel/habit_viewmodel.dart | https://raw.githubusercontent.com/Fateme-Aghababaei/karat_habit_tracker_app/9bf1ff6/lib/viewmodel/habit_viewmodel.dart | Fateme-Aghababaei/karat_habit_tracker_app 9bf1ff6 lib/viewmodel/habit_viewmodel.dart | true | 200 | 13,272 | import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get.dart';
import 'package:get_storage/get_storage.dart';
import '../model/constant.dart';
import '../model/entity/habit_model.dart';
import '../model/entity/tag_model.dart';
import '../model/reposit... | 2 |
Koichi5/quiz_app | 970c247 | lib/presentation/widgets/link_button.dart | Dart | www.github.com/Koichi5/quiz_app/tree/main/lib/presentation/widgets/link_button.dart | https://raw.githubusercontent.com/Koichi5/quiz_app/970c247/lib/presentation/widgets/link_button.dart | Koichi5/quiz_app 970c247 lib/presentation/widgets/link_button.dart | true | 200 | 787 | import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher_string.dart';
class LinkButton {
final alertSnackBar = SnackBar(
content: const Text('このURLは開けませんでした'),
action: SnackBarAction(
label: '戻る',
onPressed: () {},
),
);
Future launchUriWithString(BuildContext c... | 5 |
G-Paul/mothers_kitchen | 5516db5 | lib/screens/home.dart | Dart | www.github.com/G-Paul/mothers_kitchen/tree/main/lib/screens/home.dart | https://raw.githubusercontent.com/G-Paul/mothers_kitchen/5516db5/lib/screens/home.dart | G-Paul/mothers_kitchen 5516db5 lib/screens/home.dart | true | 200 | 1,751 | import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:firebase_auth/firebase_auth.dart';
//Local widgets and files:
final _firebaseAuth = FirebaseAuth.instance;
class HomeScreen extends StatefulWidget {
const HomeScreen({super.key});
@override
... | 1 |
aslucky18/learnx | 3aa8dc2 | lib/Screens/components/bottom_nav_bar.dart | Dart | www.github.com/aslucky18/learnx/tree/main/lib/Screens/components/bottom_nav_bar.dart | https://raw.githubusercontent.com/aslucky18/learnx/3aa8dc2/lib/Screens/components/bottom_nav_bar.dart | aslucky18/learnx 3aa8dc2 lib/Screens/components/bottom_nav_bar.dart | true | 200 | 1,734 | import 'package:flutter/material.dart';
import '/constants.dart';
import 'package:icons_plus/icons_plus.dart';
class CustomBottomBarNav extends StatefulWidget {
const CustomBottomBarNav({
super.key,
});
@override
State<CustomBottomBarNav> createState() => _CustomBottomBarNavState();
}
class _CustomBottom... | 3 |
Ayama11/test | 1d2d24f | lib/feature/cart/presintions/views/success_order.dart | Dart | www.github.com/Ayama11/test/tree/main/lib/feature/cart/presintions/views/success_order.dart | https://raw.githubusercontent.com/Ayama11/test/1d2d24f/lib/feature/cart/presintions/views/success_order.dart | Ayama11/test 1d2d24f lib/feature/cart/presintions/views/success_order.dart | true | 200 | 2,143 | import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:go_router/go_router.dart';
import 'package:testptc/core/utils/app_ruoter.dart';
import 'package:testptc/core/utils/assets.dart';
import 'package:testptc/core/utils/consts.dart';
import 'package:testptc/core/widgets/button.dar... | 6 |
AyushChothe-AshLang/ash_lang_dart | 1c5fafe | lib/tokenizer/model/token.dart | Dart | www.github.com/AyushChothe-AshLang/ash_lang_dart/tree/main/lib/tokenizer/model/token.dart | https://raw.githubusercontent.com/AyushChothe-AshLang/ash_lang_dart/1c5fafe/lib/tokenizer/model/token.dart | AyushChothe-AshLang/ash_lang_dart 1c5fafe lib/tokenizer/model/token.dart | true | 200 | 1,248 | import 'package:ash_lang/tokenizer/model/position.dart';
enum TokenType {
int, // 1234567890
double, // 1234567890.1234
stringLiteral, // "Ash" 'Ash'
booleanLiteral, // true or flase
identifier, // Variable or Function
plus, // +
minus, // -
multiply, // *
divide, // /
tildeDivide, // ~/
powerDiv... | 0 |
bipulcn/flutter_help | c6e86e7 | test_provider/lib/thirdpage.dart | Dart | www.github.com/bipulcn/flutter_help/tree/main/test_provider/lib/thirdpage.dart | https://raw.githubusercontent.com/bipulcn/flutter_help/c6e86e7/test_provider/lib/thirdpage.dart | bipulcn/flutter_help c6e86e7 test_provider/lib/thirdpage.dart | true | 200 | 885 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:test_provider/main.dart';
import 'package:test_provider/myprovider.dart';
class ThirdPage extends StatefulWidget {
const ThirdPage({super.key});
@override
State<ThirdPage> createState() => _ThirdPageState();
}
clas... | 7 |
perezjovany/COP4331-Large-Project | fcca16a | lib/account.dart | Dart | www.github.com/perezjovany/COP4331-Large-Project/tree/main/lib/account.dart | https://raw.githubusercontent.com/perezjovany/COP4331-Large-Project/fcca16a/lib/account.dart | perezjovany/COP4331-Large-Project fcca16a lib/account.dart | true | 200 | 15,043 | import 'package:flutter/material.dart';
import 'top_bar.dart';
import 'bottom_bar.dart';
import 'package:http/http.dart' as http;
import 'package:flutter_app/components/path.dart' show buildPath;
import 'dart:convert';
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:shared_preferenc... | 4 |
aqibnawaz1257837/Food_Recipe_App_in_flutter | aae6d3e | lib/Models/beefModel.dart | Dart | www.github.com/aqibnawaz1257837/Food_Recipe_App_in_flutter/tree/main/lib/Models/beefModel.dart | https://raw.githubusercontent.com/aqibnawaz1257837/Food_Recipe_App_in_flutter/aae6d3e/lib/Models/beefModel.dart | aqibnawaz1257837/Food_Recipe_App_in_flutter aae6d3e lib/Models/beefModel.dart | true | 200 | 1,037 | // To parse this JSON data, do
//
// final models = modelsFromJson(jsonString);
import 'dart:convert';
Models modelsFromJson(String str) => Models.fromJson(json.decode(str));
String modelsToJson(Models data) => json.encode(data.toJson());
class Models {
Models({
required this.meals,
});
List<Meal> me... | 5 |
dawit-h/Meals_app | 0713e49 | lib/widgets/category_item.dart | Dart | www.github.com/dawit-h/Meals_app/tree/main/lib/widgets/category_item.dart | https://raw.githubusercontent.com/dawit-h/Meals_app/0713e49/lib/widgets/category_item.dart | dawit-h/Meals_app 0713e49 lib/widgets/category_item.dart | true | 200 | 1,183 | import 'package:flutter/material.dart';
import '../screen/category_meal_page.dart';
class CategoryItem extends StatelessWidget {
final String title;
final String id;
final Color color;
const CategoryItem({
super.key,
required this.title,
required this.id,
required this.color,
});
void navi... | 2 |
pythonsolar/TodolistApp | 0f6b6a1 | todolist/lib/pages/update_todolist.dart | Dart | www.github.com/pythonsolar/TodolistApp/tree/main/todolist/lib/pages/update_todolist.dart | https://raw.githubusercontent.com/pythonsolar/TodolistApp/0f6b6a1/todolist/lib/pages/update_todolist.dart | pythonsolar/TodolistApp 0f6b6a1 todolist/lib/pages/update_todolist.dart | true | 200 | 3,961 | import 'package:flutter/material.dart';
// import 'dart:convert';
import 'package:http/http.dart' as http;
import 'dart:async';
class UpdatePage extends StatefulWidget {
final v1, v2, v3;
const UpdatePage(this.v1, this.v2, this.v3);
@override
State<UpdatePage> createState() => _UpdatePageState();
... | 1 |
3madhani/FlavoDish | 30164f8 | lib/features/search/presentation/views/widgets/searched_meal_card.dart | Dart | www.github.com/3madhani/FlavoDish/tree/main/lib/features/search/presentation/views/widgets/searched_meal_card.dart | https://raw.githubusercontent.com/3madhani/FlavoDish/30164f8/lib/features/search/presentation/views/widgets/searched_meal_card.dart | 3madhani/FlavoDish 30164f8 lib/features/search/presentation/views/widgets/searched_meal_card.dart | true | 200 | 1,899 | import 'package:cached_network_image/cached_network_image.dart';
import 'package:flavodish/constants.dart';
import 'package:flavodish/data/models/meal_model/recipe.dart';
import 'package:flavodish/features/meals/presentation/views/widgets/card_of_meals_body.dart';
import 'package:flutter/material.dart';
class Searched... | 6 |
integer-class/persona-app | f3a0b0d | persona_app/lib/screens/home/upload_photo_screen.dart | Dart | www.github.com/integer-class/persona-app/tree/main/persona_app/lib/screens/home/upload_photo_screen.dart | https://raw.githubusercontent.com/integer-class/persona-app/f3a0b0d/persona_app/lib/screens/home/upload_photo_screen.dart | integer-class/persona-app f3a0b0d persona_app/lib/screens/home/upload_photo_screen.dart | true | 200 | 8,297 | import 'package:Persona/screens/home/camera.dart';
import 'package:camera/camera.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:image_picker/image_picker.dart';
import 'dart:io';
import 'package:go_router/go_router.dart';
import '../../data/datasource/local/auth_l... | 3 |
juliamartins04/Estudos_Dart | 1089d91 | Lista [3] Ex. 4 - classe Animal JSON.dart | Dart | www.github.com/juliamartins04/Estudos_Dart/tree/main/Lista [3] Ex. 4 - classe Animal JSON.dart | https://raw.githubusercontent.com/juliamartins04/Estudos_Dart/1089d91/Lista%20%5B3%5D%20Ex.%204%20-%20classe%20Animal%20JSON.dart | juliamartins04/Estudos_Dart 1089d91 Lista [3] Ex. 4 - classe Animal JSON.dart | true | 200 | 655 | class Animal {
String name;
Animal({required this.name});
factory Animal.fromMap(Map<String, dynamic> map) =>
Animal(
name: map['name']
);
Map<String, dynamic> toMap() => {'name': name };
@override
String toString() => "Animal: ${toMap()}";
}
void main() {
const mock = [{'n... | 7 |
DVSoai/core_base_Flutter_Getx | 3fb3ab7 | lib/app.dart | Dart | www.github.com/DVSoai/core_base_Flutter_Getx/tree/main/lib/app.dart | https://raw.githubusercontent.com/DVSoai/core_base_Flutter_Getx/3fb3ab7/lib/app.dart | DVSoai/core_base_Flutter_Getx 3fb3ab7 lib/app.dart | true | 200 | 1,711 |
import 'package:core_base_flutter/provider/main_provider.dart';
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/cupertino.dart';
import 'package:get/get.dart';
import 'core/l10n/locale_manager.dart';
import 'core/routes/app_pages.dart';
import 'core/routes/app_routes.dart';
import ... | 0 |
prasad1725/IPO | 44b5fca | AdminUploadGrades.dart | Dart | www.github.com/prasad1725/IPO/tree/main/AdminUploadGrades.dart | https://raw.githubusercontent.com/prasad1725/IPO/44b5fca/AdminUploadGrades.dart | prasad1725/IPO 44b5fca AdminUploadGrades.dart | true | 200 | 5,312 | import 'dart:io';
import 'package:file_picker/file_picker.dart';
import 'package:flutter/material.dart';
import 'AdminDrawer.dart';
class AdminUploadGrades extends StatefulWidget {
const AdminUploadGrades({super.key});
@override
State<AdminUploadGrades> createState() => _AdminUploadGradesState();
}
... | 5 |
marJ0205/FrontEnd | 5e5009e | gabunginfrontend/lib/pages/list_resep.dart | Dart | www.github.com/marJ0205/FrontEnd/tree/main/gabunginfrontend/lib/pages/list_resep.dart | https://raw.githubusercontent.com/marJ0205/FrontEnd/5e5009e/gabunginfrontend/lib/pages/list_resep.dart | marJ0205/FrontEnd 5e5009e gabunginfrontend/lib/pages/list_resep.dart | true | 200 | 6,719 | import 'package:flutter/material.dart';
import 'package:gabunginfrontend/Alen/list_resep/controller.dart';
import 'package:gabunginfrontend/pages/listResep_tile.dart';
class ListResepPage extends StatefulWidget {
final String judul_page;
const ListResepPage({super.key, required this.judul_page});
@override
St... | 2 |
adibnawfal/novel_app | 6423294 | lib/app/modules/home/views/home_view.dart | Dart | www.github.com/adibnawfal/novel_app/tree/main/lib/app/modules/home/views/home_view.dart | https://raw.githubusercontent.com/adibnawfal/novel_app/6423294/lib/app/modules/home/views/home_view.dart | adibnawfal/novel_app 6423294 lib/app/modules/home/views/home_view.dart | true | 200 | 9,760 | import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:get/get.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:zoom_tap_animation/zoom_tap_animation.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:cached_network_... | 6 |
ContrastPro/stay_group_web | 4637534 | lib/pages/auth_pages/sign_up_page/sign_up_page.dart | Dart | www.github.com/ContrastPro/stay_group_web/tree/main/lib/pages/auth_pages/sign_up_page/sign_up_page.dart | https://raw.githubusercontent.com/ContrastPro/stay_group_web/4637534/lib/pages/auth_pages/sign_up_page/sign_up_page.dart | ContrastPro/stay_group_web 4637534 lib/pages/auth_pages/sign_up_page/sign_up_page.dart | true | 200 | 8,907 | import 'package:auto_size_text/auto_size_text.dart';
import 'package:email_validator/email_validator.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import '../../../blocs/auth_bloc/auth_bloc.dart';
import '../../../repositories/auth_repository.dart';
import '../../../re... | 1 |
n1kh1l8/OOP-project | 5a390b4 | lib/screens/about_us/about_us_page.dart | Dart | www.github.com/n1kh1l8/OOP-project/tree/main/lib/screens/about_us/about_us_page.dart | https://raw.githubusercontent.com/n1kh1l8/OOP-project/5a390b4/lib/screens/about_us/about_us_page.dart | n1kh1l8/OOP-project 5a390b4 lib/screens/about_us/about_us_page.dart | true | 200 | 4,441 | // ignore_for_file: prefer_const_constructors
import 'package:google_fonts/google_fonts.dart';
import 'package:flutter/material.dart';
class AboutUsPage extends StatefulWidget {
const AboutUsPage({Key? key}) : super(key: key);
@override
_AboutUsPageState createState() => _AboutUsPageState();
}
class _AboutUsPa... | 3 |
Authority10240/falcorp_response | ecb39b0 | lib/features/home/data/models/home_model/load_calender_event_model.dart | Dart | www.github.com/Authority10240/falcorp_response/tree/main/lib/features/home/data/models/home_model/load_calender_event_model.dart | https://raw.githubusercontent.com/Authority10240/falcorp_response/ecb39b0/lib/features/home/data/models/home_model/load_calender_event_model.dart | Authority10240/falcorp_response ecb39b0 lib/features/home/data/models/home_model/load_calender_event_model.dart | true | 200 | 532 |
import 'package:flutter/foundation.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
part 'load_calender_event_model.freezed.dart';
part 'load_calender_event_model.g.dart';
@freezed
class EventEntityModel with _$EventEntityModel{
const factory EventEntityModel({
required String? employeeId,
... | 7 |
ViniciosM/products | e5660ab | lib/presentation/favorites/controllers/favorites_controller.dart | Dart | www.github.com/ViniciosM/products/tree/main/lib/presentation/favorites/controllers/favorites_controller.dart | https://raw.githubusercontent.com/ViniciosM/products/e5660ab/lib/presentation/favorites/controllers/favorites_controller.dart | ViniciosM/products e5660ab lib/presentation/favorites/controllers/favorites_controller.dart | true | 200 | 1,228 | import 'package:products/data/dtos/product_dto.dart';
import 'package:products/domain/usecases/add_to_favorites_usecase.dart';
import 'package:products/domain/usecases/get_favorites_usecase.dart';
import 'package:products/presentation/favorites/controllers/favorites_atom.dart';
import 'package:products/presentation/fav... | 0 |
Tagbovi/SchoolEmergencySecurityApp | 7610e29 | EmergencyAppProject/loads/PopOutImgleaks.dart | Dart | www.github.com/Tagbovi/SchoolEmergencySecurityApp/tree/main/EmergencyAppProject/loads/PopOutImgleaks.dart | https://raw.githubusercontent.com/Tagbovi/SchoolEmergencySecurityApp/7610e29/EmergencyAppProject/loads/PopOutImgleaks.dart | Tagbovi/SchoolEmergencySecurityApp 7610e29 EmergencyAppProject/loads/PopOutImgleaks.dart | true | 200 | 2,272 | import 'package:flutter/material.dart';
import 'package:m/EmergencyAppProject/page-1/leakage.dart';
class popOutImgLeaks extends StatefulWidget {
@override
_popOutImgLeaksState createState() => _popOutImgLeaksState();
}
class _popOutImgLeaksState extends State<popOutImgLeaks>
with SingleTickerProviderStateMix... | 4 |
fluttterdevelop/Book_shop | b473f28 | lib/view/home/end_drawer/main_section/pop_up_leasing.dart | Dart | www.github.com/fluttterdevelop/Book_shop/tree/main/lib/view/home/end_drawer/main_section/pop_up_leasing.dart | https://raw.githubusercontent.com/fluttterdevelop/Book_shop/b473f28/lib/view/home/end_drawer/main_section/pop_up_leasing.dart | fluttterdevelop/Book_shop b473f28 lib/view/home/end_drawer/main_section/pop_up_leasing.dart | true | 200 | 1,024 | import 'package:flutter/material.dart';
class PopupLeasing extends StatefulWidget {
const PopupLeasing({super.key});
@override
State<PopupLeasing> createState() => _PopupLeasingState();
}
class _PopupLeasingState extends State<PopupLeasing> {
@override
Widget build(BuildContext context) {
return Scaf... | 2 |
devobs/value_state | 66c7cd8 | packages/value_state/test/fetch_test.dart | Dart | www.github.com/devobs/value_state/tree/main/packages/value_state/test/fetch_test.dart | https://raw.githubusercontent.com/devobs/value_state/66c7cd8/packages/value_state/test/fetch_test.dart | devobs/value_state 66c7cd8 packages/value_state/test/fetch_test.dart | true | 200 | 1,916 | // ignore_for_file: prefer_const_constructors
import 'package:test/test.dart';
import 'package:value_state/value_state.dart';
import 'stream.dart';
void main() {
late CounterStream counterStream;
setUp(() {
counterStream = CounterStream();
});
tearDown(() async {
await counterStream.close();
});
... | 5 |
FahrSliman/food-ordering | f57fea8 | lib/app/myapp_controller.dart | Dart | www.github.com/FahrSliman/food-ordering/tree/main/lib/app/myapp_controller.dart | https://raw.githubusercontent.com/FahrSliman/food-ordering/f57fea8/lib/app/myapp_controller.dart | FahrSliman/food-ordering f57fea8 lib/app/myapp_controller.dart | true | 200 | 492 | import '../core/enum/connectivity_status.dart';
import '../core/services/base_controller.dart';
import '../ui/shared/utils.dart';
class MyAppController extends BaseController {
ConnectivityStatus connectionStatus = ConnectivityStatus.ONLINE;
@override
void onInit() {
listenToConnectionStatus();
super.on... | 6 |
phammanhphi3011/bloc_pattern | 0f225db | lib/utils/validation.dart | Dart | www.github.com/phammanhphi3011/bloc_pattern/tree/main/lib/utils/validation.dart | https://raw.githubusercontent.com/phammanhphi3011/bloc_pattern/0f225db/lib/utils/validation.dart | phammanhphi3011/bloc_pattern 0f225db lib/utils/validation.dart | true | 200 | 1,376 | class Validation {
static bool emailValid(String? email) {
return RegExp(
r'^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(?!gmail|yahoo|hotmail)(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$')
.hasMatch(email!);
}
static bool hasEmailPersonal(String? email) {
... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.