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.
aku_new_community/lib/ui/home/home_notification.dart

114 lines
3.1 KiB

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
3 years ago
import 'package:carousel_slider/carousel_slider.dart';
4 years ago
import 'package:get/get.dart';
import 'package:velocity_x/velocity_x.dart';
3 years ago
import 'package:aku_new_community/const/resource.dart';
import 'package:aku_new_community/model/community/board_model.dart';
import 'package:aku_new_community/ui/community/notice/notice_page.dart';
import 'package:aku_new_community/utils/bee_date_util.dart';
import 'package:aku_new_community/utils/headers.dart';
class HomeNotification extends StatefulWidget {
final List<BoardItemModel> items;
3 years ago
HomeNotification({Key? key, required this.items}) : super(key: key);
@override
_HomeNotificationState createState() => _HomeNotificationState();
}
class _HomeNotificationState extends State<HomeNotification> {
late BoardItemModel boardItemModel;
bool isDate = true;
@override
void initState() {
super.initState();
if (widget.items != null) {
if (widget.items.length > 0) {
boardItemModel = widget.items[0];
}
}
}
@override
Widget build(BuildContext context) {
return Row(
children: [
24.wb,
Image.asset(
R.ASSETS_IMAGES_NOTICE_PNG,
height: 45.w,
width: 61.w,
),
24.wb,
widget.items.isEmpty
? Spacer()
: CarouselSlider(
3 years ago
items: widget.items.map((e) => getText(e)).toList(),
options: CarouselOptions(
scrollDirection: Axis.vertical,
viewportFraction: 1.0,
aspectRatio: 300 / 40,
autoPlay: true,
onPageChanged: (index, _) {
//print(index.toString());
// setState(() {
// _currentIndicator = index;
// });
},
),
).expand(),
12.wb,
],
);
}
Widget getText(BoardItemModel e) {
return GestureDetector(
3 years ago
onTap: () {
Get.to(() => NoticePage());
},
child: Container(
color: Colors.transparent,
child: Row(
children: [
Container(
3 years ago
constraints: BoxConstraints(maxWidth: 190),
child: Text(
3 years ago
e.title ?? '',
style: TextStyle(
color: Color(0xA6000000),
fontSize: 22.sp,
fontWeight: FontWeight.bold,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
3 years ago
)),
Spacer(),
Container(
child: Text(
e.releaseDate != null ? BeeDateUtil(e.releaseDate).timeAgo : '',
style: TextStyle(
color: Color(0x73000000),
fontSize: 20.sp,
),
)),
8.wb,
Icon(
CupertinoIcons.chevron_forward,
size: 24.w,
color: Color(0xFF999999),
),
],
),
),
);
}
}