123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- import 'package:flutter/material.dart';
- import 'package:flutter_markdown/flutter_markdown.dart';
- import 'package:flutter_habit/common/I18N.dart';
- import 'package:flutter_habit/common/components/PopMenus.dart';
- import 'package:flutter_habit/provider/UserProvider.dart';
- import 'package:flutter_habit/network/Repository.dart';
- import 'package:provider/provider.dart';
- class GoodsPage extends StatefulWidget {
- final dynamic data;
- GoodsPage(this.data);
- @override
- _GoodsPageState createState() => _GoodsPageState();
- }
- class _GoodsPageState extends State<GoodsPage> {
- late bool isRequesting;
- @override
- void initState() {
-
- super.initState();
- isRequesting = false;
- }
- @override
- Widget build(BuildContext context) {
- UserProvider userProvider = Provider.of<UserProvider>(context);
- return Scaffold(
- appBar: AppBar(
- title: Text(I18N.of("商品详情")),
- actions: userProvider.token == null
- ? []
- : <Widget>[
- Row(
- children: <Widget>[
- Text(
- "${userProvider.coins} x ",
- style: TextStyle(fontSize: 16),
- ),
- Icon(Icons.monetization_on),
- Text(" "),
- ],
- ),
- ],
- ),
- body: Padding(
- padding: EdgeInsets.all(16),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- isRequesting ? LinearProgressIndicator() : Container(),
- Padding(
- padding: EdgeInsets.only(top: 10, bottom: 10),
- child: Container(
- padding: EdgeInsets.all(10),
- height: 300,
- decoration: BoxDecoration(
- border: Border.all(
- color: Theme.of(context).unselectedWidgetColor,
- ),
- borderRadius: BorderRadius.circular(10),
- ),
- child: Stack(
- children: <Widget>[
- Markdown(
- data: widget.data["description"],
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.end,
- children: <Widget>[
- IconButton(
- icon: Icon(
- Icons.zoom_out_map,
- color: Theme.of(context).colorScheme.secondary,
- ),
- onPressed: () =>
- Navigator.of(context).push(MaterialPageRoute(
- builder: (_) => Scaffold(
- appBar: AppBar(
- title: Text(
- widget.data["name"].toString()),
- ),
- body: Markdown(
- data: widget.data["description"]
- .toString(),
- ),
- ))),
- ),
- ],
- ),
- ],
- ),
- ),
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.start,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: <Widget>[
- Text(
- "${widget.data["price"].toString()} ",
- style: TextStyle(fontSize: 34),
- ),
- Icon(
- Icons.monetization_on,
- size: 30,
- ),
- ],
- ),
- Text(
- "[${I18N.of("官方合作")}] ${widget.data["name"].toString()}",
- maxLines: 2,
- style: TextStyle(fontSize: 20),
- ),
- Text(
- "${I18N.of("库存")} : ${widget.data["count"].toString()}",
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Container(),
- Column(
- children: <Widget>[
- ElevatedButton(
- style: ButtonStyle(
- backgroundColor: MaterialStateProperty.all(
- Theme.of(context).colorScheme.secondary),
- foregroundColor: MaterialStateProperty.all(
- Theme.of(context).cardColor)),
- child: Text(userProvider.token == null
- ? I18N.of("请先登录")
- : I18N.of("立即获取优惠口令")),
- onPressed: userProvider.token == null || isRequesting
- ? null
- : () async {
- UserProvider userProvider =
- Provider.of<UserProvider>(context,
- listen: false);
- isRequesting = true;
- setState(() {});
- bool isSuccess = await Repository.getInstance()!
- .buyGoods(context, userProvider.token,
- userProvider.uid, widget.data["goodsId"]);
- if (isSuccess) {
- userProvider.coins =
- await Repository.getInstance()!
- .getCoin(userProvider.uid);
- userProvider.refresh();
- await PopMenus.attention(
- context: context,
- content:
- Text(I18N.of("感谢您的支持,优惠口令已发送至您的邮箱")));
- }
- isRequesting = false;
- setState(() {});
- },
- ),
- Text(
- I18N.of("重复购买不会重复扣费"),
- style: Theme.of(context).textTheme.bodySmall,
- ),
- ],
- ),
- ],
- )
- ],
- ),
- ),
- );
- }
- }
|