Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devesh Mirchandani 202351029 #11

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/services/blood_bank_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ class BloodBankService {

Future<List<dynamic>> getBloodBanks() async {
final response = await http.get(Uri.parse(apiUrl));

if (response.statusCode == 200) {
final data = jsonDecode(response.body);
if (data["records"]==null){
return [];
}
return data['records']; // Modify as per the API response structure
} else {
return [];
Expand Down
5 changes: 4 additions & 1 deletion lib/views/pages/main_home/home_pages/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ class _HomeScreenState extends State<HomeScreen> {
HomeCardConst(
title: _text.donate,
col: const Color.fromARGB(255, 255, 122, 122),
onPressed: () {},
onPressed: () {
Navigator.push(context, MaterialPageRoute(builder: (ctx)=> LocateBloodBanks()));
},

),
HomeCardConst(
title: _text.required,
Expand Down
2 changes: 1 addition & 1 deletion lib/views/pages/profile/profile_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
Column(
children: [
Text(
"ALICE",
widget.name,
style: const TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
Expand Down