You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
54 lines
1.6 KiB
import 'package:akuCommunity/utils/headers.dart';
|
|
import 'package:akuCommunity/constants/application_objects.dart';
|
|
import 'package:akuCommunity/provider/app_provider.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
class ApplicationView extends StatefulWidget {
|
|
ApplicationView({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_ApplicationViewState createState() => _ApplicationViewState();
|
|
}
|
|
|
|
class _ApplicationViewState extends State<ApplicationView> {
|
|
_buildTile(AO object) {
|
|
return MaterialButton(
|
|
shape: StadiumBorder(),
|
|
padding: EdgeInsets.zero,
|
|
onPressed: () => Get.to(object.page),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Image.asset(
|
|
object.path,
|
|
height: 75.w,
|
|
width: 75.w,
|
|
),
|
|
8.hb,
|
|
object.title.text.size(24.sp).make(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final appProvider = Provider.of<AppProvider>(context);
|
|
return GridView.builder(
|
|
padding: EdgeInsets.zero,
|
|
gridDelegate:
|
|
SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 4),
|
|
itemBuilder: (context, index) {
|
|
if (index == appProvider.myApplications.length)
|
|
return _buildTile(allApp);
|
|
return _buildTile(appProvider.myApplications[index]);
|
|
},
|
|
itemCount: appProvider.myApplications.length + 1,
|
|
shrinkWrap: true,
|
|
);
|
|
}
|
|
}
|