This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--background: #ffffff; | |
--foreground: #111827; | |
--card: #ffffff; | |
--card-foreground: #111827; | |
--popover: #ffffff; | |
--popover-foreground: #111827; | |
--primary: #4f46e5; | |
--primary-foreground: #ffffff; | |
--secondary: #f3f4f6; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const resources = { | |
en: { | |
translation: { | |
Home: 'Home', | |
Profile: 'Profile', | |
Settings: 'Settings', | |
dummy_text: 'Browse Projects', | |
location: 'Jeddah', | |
phoneNumber: 'Phone Number', | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
NewerOlder