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.
24 lines
661 B
24 lines
661 B
import 'package:aku_community_manager/models/manager/facilities/facilities_card.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
class FacilitiesView extends StatefulWidget {
|
|
final int index;
|
|
FacilitiesView({Key key, this.index}) : super(key: key);
|
|
|
|
@override
|
|
_FacilitiesViewState createState() => _FacilitiesViewState();
|
|
}
|
|
|
|
class _FacilitiesViewState extends State<FacilitiesView> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ListView(
|
|
padding: EdgeInsets.symmetric(vertical: 16.w, horizontal: 32.w),
|
|
children: [
|
|
FacilitiesCard(),
|
|
],
|
|
);
|
|
}
|
|
}
|