1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import 'package:flutter/material.dart';
- import 'main.dart';
- class DrinkDetail extends StatelessWidget {
- final drink;
- const DrinkDetail({Key? key, required this.drink}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Container(
- decoration: const BoxDecoration(
- gradient: LinearGradient(colors: [
- myColor,
- Colors.orange,
- ])),
- child: Scaffold(
- backgroundColor: Colors.transparent,
- appBar: AppBar(
- backgroundColor: Colors.transparent,
- title: Text(drink["strDrink"]),
- elevation: 0.0,
- ),
- body: Center(
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: <Widget>[
- Hero(
- tag: drink["idDrink"],
- child: CircleAvatar(
- radius: 100.0,
- backgroundImage: NetworkImage(
- drink["strDrinkThumb"],
- ),
- ),
- ),
- const SizedBox(
- height: 30.0,
- ),
- Text(
- "ID: ${drink["idDrink"]}",
- style: const TextStyle(
- color: Colors.white,
- ),
- ),
- const SizedBox(
- height: 30.0,
- ),
- Text(
- "${drink["strDrink"]}",
- style: const TextStyle(
- fontSize: 22,
- color: Colors.white,
- ),
- )
- ],
- ),
- ),
- ),
- );
- }
- }
|