1234567891011121314151617181920212223242526272829303132 |
- import 'package:flutter/material.dart';
- class NovelSummaryView extends StatelessWidget {
- final String summary;
- final bool isUnfold;
- final VoidCallback onPressed;
- NovelSummaryView(this.summary, this.isUnfold, this.onPressed);
- @override
- Widget build(BuildContext context) {
- return GestureDetector(
- onTap: onPressed,
- child: Container(
- color: Colors.white,
- padding: EdgeInsets.fromLTRB(15, 15, 15, 15),
- child: Stack(
- alignment: AlignmentDirectional.bottomEnd,
- children: <Widget>[
- Text(
- summary,
- maxLines: isUnfold ? null : 3,
- style: TextStyle(fontSize: 14),
- ),
- Image.asset('img/detail_fold_bg.png'),
- Image.asset(isUnfold ? 'img/detail_up.png' : 'img/detail_down.png'),
- ],
- ),
- ),
- );
- }
- }
|