reader_view.dart 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import 'package:flutter/material.dart';
  2. import 'package:shuqi/public.dart';
  3. import 'reader_overlayer.dart';
  4. import 'reader_utils.dart';
  5. import 'reader_config.dart';
  6. class ReaderView extends StatelessWidget {
  7. final Article article;
  8. final int page;
  9. final double topSafeHeight;
  10. ReaderView({required this.article, required this.page, required this.topSafeHeight});
  11. @override
  12. Widget build(BuildContext context) {
  13. return Stack(
  14. children: <Widget>[
  15. Positioned(left: 0, top: 0, right: 0, bottom: 0, child: Image.asset('img/read_bg.png', fit: BoxFit.cover)),
  16. ReaderOverlayer(article: article, page: page, topSafeHeight: topSafeHeight),
  17. buildContent(article, page),
  18. ],
  19. );
  20. }
  21. buildContent(Article article, int page) {
  22. var content = article.stringAtPageIndex(page);
  23. if (content.startsWith('\n')) {
  24. content = content.substring(1);
  25. }
  26. return Container(
  27. color: Colors.transparent,
  28. margin: EdgeInsets.fromLTRB(15, topSafeHeight + ReaderUtils.topOffset, 10, Screen.bottomSafeHeight + ReaderUtils.bottomOffset),
  29. child: Text.rich(
  30. TextSpan(children: [TextSpan(text: content, style: TextStyle(fontSize: fixedFontSize(ReaderConfig.instance.fontSize)))]),
  31. textAlign: TextAlign.justify,
  32. ),
  33. );
  34. }
  35. }