Skip to content

Instantly share code, notes, and snippets.

View devqueue's full-sized avatar
:octocat:
coding from home

devqueue devqueue

:octocat:
coding from home
  • VS-code
View GitHub Profile
@devqueue
devqueue / global.css
Created May 16, 2025 06:34
Only replace the root, .dark and theme inline classes
:root {
--background: #ffffff;
--foreground: #111827;
--card: #ffffff;
--card-foreground: #111827;
--popover: #ffffff;
--popover-foreground: #111827;
--primary: #4f46e5;
--primary-foreground: #ffffff;
--secondary: #f3f4f6;
@devqueue
devqueue / fastfile.rb
Created January 12, 2025 12:58
ios app distribution pipeline
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
@devqueue
devqueue / en.ts
Last active December 11, 2024 08:39
consent: {
title: "Consent Form",
point1: "1. Voluntary Participation: I understand that my participation in this questionnaire is voluntary, and I can withdraw at any time without any penalty.",
point2: "2. Confidentiality: I am aware that all information provided will be kept confidential and used exclusively for the intended purpose of dementia prevention and identification. My personal information will not be shared with any third parties without my explicit consent.",
point3: "3. Purpose and Benefits: I acknowledge that the data collected from this questionnaire will contribute to scientific research aimed at preventing and identifying dementia, potentially benefiting both myself and society.",
point4: "4. Data Usage: I understand that the information I provide will be analyzed and used for research purposes. The findings may be published in scientific journals or presented at conferences, but my identity will remain confidential.",
point5: "5. Risks and Discomforts: I am aware
@devqueue
devqueue / Tajdeed.js
Created July 11, 2024 17:30
Tajdeed Partner Application
const resources = {
en: {
translation: {
Home: 'Home',
Profile: 'Profile',
Settings: 'Settings',
dummy_text: 'Browse Projects',
location: 'Jeddah',
phoneNumber: 'Phone Number',
},
import 'package:dextro/common/values/colors.dart';
import 'package:dextro/pages/sign_in/bloc/sign_in_blocs.dart';
import 'package:dextro/pages/sign_in/bloc/sign_in_events.dart';
import 'package:dextro/pages/sign_in/bloc/sign_in_states.dart';
import 'package:dextro/pages/common_widgets.dart';
import 'package:dextro/pages/sign_in/sign_in_controller.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
prompt_initial2 = '''
Convert the statements into expressions. Also identify the objects present in the expression and express them in the json format
Following are the examples:
Statement - "The minimum Wall thickness for carbon steel is 3.2 mm & for stainless alloys 4.8 mm"
Converted Expression:
carbon_steel.wall_thickness >= 3.2 mm && stainless_alloys.wall_thickness >= 4.8 mm
JSON format:
return BlocBuilder<SignInBloc, SignInState>(builder: (context, state) {
return Container(
color: AppColors.registerbackground,
child: SafeArea(
child: Scaffold(
backgroundColor: AppColors.registerbackground,
appBar: buildAppBar("Welcome", color: AppColors.registerbackground),
body: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
import 'package:firstapp/common/values/colors.dart';
import 'package:firstapp/pages/common_widgets.dart';
import 'package:firstapp/pages/register/bloc/register_blocs.dart';
import 'package:firstapp/pages/register/bloc/register_events.dart';
import 'package:firstapp/pages/register/bloc/register_states.dart';
import 'package:firstapp/pages/register/register_controller.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
// ignore_for_file: depend_on_referenced_packages
import 'package:dextro/common/values/colors.dart';
import 'package:dextro/pages/sign_in/bloc/sign_in_blocs.dart';
import 'package:fl_country_code_picker/fl_country_code_picker.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:intl/intl.dart';
import 'package:flutter/material.dart';
class AppColors {
/// white background
static const Color primaryBackground = Colors.white;
/// grey background
static const Color primarySecondaryBackground =
Color.fromRGBO(242, 249, 255, 1.000);