2022-04-22 22:08:59 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:nekoya_flutter/api/products.dart';
|
|
|
|
import 'package:nekoya_flutter/components/product_box.dart';
|
|
|
|
|
|
|
|
class Products extends StatefulWidget {
|
|
|
|
const Products({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<Products> createState() => _ProductsState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ProductsState extends State<Products> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
2022-04-22 22:48:59 +02:00
|
|
|
backgroundColor: const Color(0xff1b1c1e),
|
2022-04-22 22:08:59 +02:00
|
|
|
appBar: AppBar(
|
2022-04-22 22:23:28 +02:00
|
|
|
title: const Text('Nekoya'),
|
|
|
|
centerTitle: true,
|
2022-04-22 22:48:59 +02:00
|
|
|
backgroundColor: const Color(0xff212226),
|
2022-04-22 22:08:59 +02:00
|
|
|
),
|
|
|
|
body: FutureBuilder<dynamic>(
|
|
|
|
future: getProducts(),
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
if (snapshot.hasData) {
|
|
|
|
var data = snapshot.data;
|
|
|
|
return ListView.builder(
|
|
|
|
itemCount: data!.length,
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
return ProductBox(
|
2022-04-22 22:23:28 +02:00
|
|
|
imageUrl:
|
|
|
|
'https://nekoya.moe.team/img/' + data[index]['IMAGE'],
|
|
|
|
title: data[index]['TITLE']);
|
2022-04-22 22:08:59 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return const Center(
|
2022-04-23 17:57:52 +02:00
|
|
|
child: CircularProgressIndicator(
|
|
|
|
color: Colors.red,
|
|
|
|
),
|
2022-04-22 22:08:59 +02:00
|
|
|
);
|
|
|
|
},
|
2022-04-22 22:23:28 +02:00
|
|
|
),
|
2022-04-22 22:08:59 +02:00
|
|
|
);
|
|
|
|
}
|
2022-04-22 22:23:28 +02:00
|
|
|
}
|