87 lines
3.1 KiB
Dart
87 lines
3.1 KiB
Dart
import 'package:expandable_text/expandable_text.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:mangayomi/providers/l10n_providers.dart';
|
|
import 'package:mangayomi/utils/media_query.dart';
|
|
|
|
class ReadMoreWidget extends StatefulWidget {
|
|
const ReadMoreWidget({super.key, required this.text, required this.onChanged});
|
|
final Function(bool) onChanged;
|
|
final String text;
|
|
|
|
@override
|
|
ReadMoreWidgetState createState() => ReadMoreWidgetState();
|
|
}
|
|
|
|
class ReadMoreWidgetState extends State<ReadMoreWidget>
|
|
with TickerProviderStateMixin {
|
|
late bool expanded = true;
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final l10n = l10nLocalizations(context)!;
|
|
return widget.text.isEmpty
|
|
? Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(l10n.no_description),
|
|
],
|
|
)
|
|
: Column(
|
|
children: [
|
|
Stack(
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 6),
|
|
child: ExpandableText(
|
|
animationDuration: const Duration(milliseconds: 500),
|
|
onExpandedChanged: (value) {
|
|
setState(() => expanded = value);
|
|
widget.onChanged(value);
|
|
},
|
|
expandOnTextTap: true,
|
|
widget.text.trim(),
|
|
expandText: '',
|
|
maxLines: 3,
|
|
expanded: expanded,
|
|
linkColor: Theme.of(context).scaffoldBackgroundColor,
|
|
animation: true,
|
|
collapseOnTextTap: true,
|
|
prefixText: '',
|
|
),
|
|
),
|
|
if (!expanded)
|
|
Positioned(
|
|
bottom: 0,
|
|
right: 0,
|
|
left: 0,
|
|
child: Container(
|
|
width: mediaWidth(context, 1),
|
|
height: 30,
|
|
decoration: BoxDecoration(
|
|
color: Theme.of(context).scaffoldBackgroundColor,
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topCenter,
|
|
end: Alignment.bottomCenter,
|
|
colors: [
|
|
Theme.of(context)
|
|
.scaffoldBackgroundColor
|
|
.withOpacity(0.2),
|
|
Theme.of(context).scaffoldBackgroundColor
|
|
],
|
|
stops: const [0, .9],
|
|
),
|
|
),
|
|
child: const Icon(Icons.keyboard_arrow_down_sharp),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
if (expanded)
|
|
SizedBox(
|
|
width: mediaWidth(context, 1),
|
|
height: 20,
|
|
child: const Icon(Icons.keyboard_arrow_up_sharp),
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|