Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…g_app into avinath1998-master
  • Loading branch information
dewmal committed Mar 23, 2020
2 parents 36af070 + f36e822 commit 195b27d
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 15 deletions.
1 change: 0 additions & 1 deletion assets/lang/ta.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
"\"அறிகுறிகள் இல்லாத ஒருவரிடமிருந்து COVID-19 பிடிக்க முடியுமா?\"": "\"இருமல் உள்ள ஒருவரால் வெளியேற்றப்படும் சுவாச துளிகள் நோய் பரவுவதற்கான முக்கிய வழி. அறிகுறிகள் இல்லாத ஒருவரிடமிருந்து COVID-19 ஐப் பீடிக்கும் ஆபத்து மிகக் குறைவு. இருப்பினும், COVID-19 உள்ள பலர் லேசான அறிகுறிகளை மட்டுமே அனுபவிக்கின்றனர். நோயின் ஆரம்ப கட்டங்களில் இது குறிப்பாக உண்மை. ஆகவே, எடுத்துக்காட்டாக, லேசான இருமல் மற்றும் உடல்நிலை சற்று குறைந்தவரிடமிருந்து COVID-19 பீடிக்க முடியும். COVID-19 பரவும் காலம் குறித்த தற்போதைய ஆராய்ச்சியை WHO மதிப்பிடுகிறது, மேலும் புதுப்பிக்கப்பட்ட கண்டுபிடிப்புகளை தொடர்ந்து பகிர்ந்து கொள்ளும்.\"",
"\"நோயால் பாதிக்கப்பட்ட ஒருவரின் மலத்திலிருந்து எனக்கு COVID-19 பீடிக்க முடியுமா?\"": "\"பாதிக்கப்பட்ட நபரின் மலத்திலிருந்து COVID-19 பீடிக்கும் ஆபத்து குறைவாக இருப்பதாகத் தெரிகிறது. ஆரம்ப விசாரணைகள் சில சந்தர்ப்பங்களில் மலத்தில் வைரஸ் இருக்கலாம் என்று கூறினாலும், இந்த பாதை வழியாக பரவுவது நோய்ப் பரவலின் முக்கிய அம்சம் அல்ல. COVID-19 பரவியுள்ள வழிகள் குறித்த புதிய ஆராய்ச்சிகளை WHO மதிப்பிடுகிறது, மேலும் புதிய கண்டுபிடிப்புகளை தொடர்ந்து பகிர்ந்து கொள்ளும். இதுவும் ஒரு ஆபத்து என்பதால், கழிப்பறையைப் பயன்படுத்தியபின்னும், சாப்பிடுவதற்கு முன்பும் தவறாமல் கைகளை சுத்தம் செய்வது சிறந்ததாகும்.\""
},

"home_address": "மின்னஞ்சல்",
"sri_lankan_citizan": "நீங்கள் இலங்கையரா?",
"radio_yes": "ஆம்",
Expand Down
1 change: 0 additions & 1 deletion lib/page/screen/dashboard_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ class _DashboardScreenState extends State<DashboardScreen> {

@override
Widget build(BuildContext context) {
print(Provider.of<StoriesModel>(context).articles.length);
return DefaultTabController(
length: 2,
child: Column(
Expand Down
42 changes: 29 additions & 13 deletions lib/page/screen/user_register_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,16 @@ class _UserRegisterScreenState extends State<UserRegisterScreen> {
String _address;
String _citizenStatus = "Yes";
String _nic = "";
String _country = "Afghanistan";
String _country;
String _passport = "";
String _gender = "Female";
String _gender;

final AsyncMemoizer<List<String>> _memorizier = AsyncMemoizer<List<String>>();

@override
void initState() {
super.initState();
_currentBtnChild = _registerTextChild;
print("Getting countries");
}

Future<List<String>> _fetchCountries() {
Expand Down Expand Up @@ -351,7 +350,6 @@ class _UserRegisterScreenState extends State<UserRegisterScreen> {
setState(() {
_citizenStatus = value;
_passport = "";
_country = "Sri Lanka";
});
},
),
Expand Down Expand Up @@ -450,17 +448,27 @@ class _UserRegisterScreenState extends State<UserRegisterScreen> {
child: Container(
margin: const EdgeInsets.only(
left: 15.0),
height: 60.0,
child:
DropdownButtonHideUnderline(
child: DropdownButton<
String>(
child:
DropdownButtonFormField<
String>(
validator: (val) {
if (val == null) {
return "Select your country.";
}
},
decoration: InputDecoration(
border: InputBorder.none,
contentPadding:
const EdgeInsets.all(
10.0)),
hint: Padding(
child: Text(
"Select your country"),
padding:
const EdgeInsets.only(
left: 10.0),
left: 0.0),
),
items: snapshot.data
.map((value) =>
Expand Down Expand Up @@ -575,12 +583,20 @@ class _UserRegisterScreenState extends State<UserRegisterScreen> {
Icon(Icons.person),
Expanded(
child: Container(
height: 60.0,
width: MediaQuery.of(context).size.width,
margin: const EdgeInsets.only(left: 15.0),
child: DropdownButtonHideUnderline(
child: DropdownButton<String>(
child: DropdownButtonFormField<String>(
decoration: InputDecoration(
border: InputBorder.none,
contentPadding: const EdgeInsets.all(10.0)),
validator: (val) {
if (val == null) {
return "Choose a gender.";
}
},
hint: Padding(
padding: const EdgeInsets.only(left: 10.0),
padding: const EdgeInsets.only(left: 0.0),
child: Text(AppLocalizations.of(context)
.translate("select_a_gender")),
),
Expand All @@ -606,6 +622,7 @@ class _UserRegisterScreenState extends State<UserRegisterScreen> {
},
value: _gender,
)),
padding: const EdgeInsets.all(3.0),
decoration: ShapeDecoration(
shape: RoundedRectangleBorder(
side: BorderSide(
Expand Down Expand Up @@ -675,8 +692,6 @@ class _UserRegisterScreenState extends State<UserRegisterScreen> {
country: _country,
gender: _gender);

print(registration);

try {
await GetIt.instance<DataRepository>().registerUser(registration);

Expand Down Expand Up @@ -710,5 +725,6 @@ class _UserRegisterScreenState extends State<UserRegisterScreen> {
});
});
}
print(registration);
}
}

0 comments on commit 195b27d

Please sign in to comment.