homepage.dart 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. import 'dart:convert';
  2. import 'package:flutter/material.dart';
  3. import 'package:flutter_cocktail/drink_detail.dart';
  4. import 'package:http/http.dart' as http;
  5. import 'main.dart';
  6. class HomePage extends StatefulWidget {
  7. @override
  8. _HomePageState createState() => _HomePageState();
  9. }
  10. class _HomePageState extends State<HomePage> {
  11. String api = "https://www.thecocktaildb.com/api/json/v1/1/filter.php?c=Cocktail";
  12. var res, drinks;
  13. @override
  14. void initState() {
  15. super.initState();
  16. fetchData();
  17. }
  18. fetchData() async {
  19. res = await http.get(Uri.parse(api));
  20. drinks = jsonDecode(res.body)["drinks"];
  21. }
  22. @override
  23. Widget build(BuildContext context) {
  24. return Container(
  25. decoration: BoxDecoration(
  26. gradient: LinearGradient(colors: [
  27. myColor,
  28. Colors.orange,
  29. ])),
  30. child: Scaffold(
  31. backgroundColor: Colors.transparent,
  32. appBar: AppBar(
  33. title: Text("Cocktail App"),
  34. elevation: 0.0,
  35. backgroundColor: Colors.transparent,
  36. ),
  37. body: Center(
  38. child: res != null
  39. ? ListView.builder(
  40. itemCount: drinks.length,
  41. itemBuilder: (context, index) {
  42. var drink = drinks[index];
  43. return ListTile(
  44. leading: Hero(
  45. tag: drink["idDrink"],
  46. child: CircleAvatar(
  47. backgroundImage: NetworkImage(
  48. drink["strDrinkThumb"] ??
  49. "http://www.4motiondarlington.org/wp-content/uploads/2013/06/No-image-found.jpg",
  50. ),
  51. ),
  52. ),
  53. title: Text(
  54. "${drink["strDrink"]}",
  55. style: TextStyle(
  56. fontSize: 22,
  57. color: Colors.white,
  58. ),
  59. ),
  60. subtitle: Text(
  61. "${drink["idDrink"]}",
  62. style: TextStyle(
  63. color: Colors.white,
  64. ),
  65. ),
  66. onTap: () {
  67. Navigator.push(
  68. context,
  69. MaterialPageRoute(
  70. builder: (context) => DrinkDetail(drink: drink),
  71. ),
  72. );
  73. },
  74. );
  75. },
  76. )
  77. : CircularProgressIndicator(backgroundColor: Colors.white),
  78. ),
  79. ),
  80. );
  81. }
  82. }