1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import 'package:flutter/material.dart';
- import 'package:shuqi/public.dart';
- import 'reader_overlayer.dart';
- import 'reader_utils.dart';
- import 'reader_config.dart';
- class ReaderView extends StatelessWidget {
- final Article article;
- final int page;
- final double topSafeHeight;
- ReaderView({required this.article, required this.page, required this.topSafeHeight});
- @override
- Widget build(BuildContext context) {
- return Stack(
- children: <Widget>[
- Positioned(left: 0, top: 0, right: 0, bottom: 0, child: Image.asset('img/read_bg.png', fit: BoxFit.cover)),
- ReaderOverlayer(article: article, page: page, topSafeHeight: topSafeHeight),
- buildContent(article, page),
- ],
- );
- }
- buildContent(Article article, int page) {
- var content = article.stringAtPageIndex(page);
- if (content.startsWith('\n')) {
- content = content.substring(1);
- }
- return Container(
- color: Colors.transparent,
- margin: EdgeInsets.fromLTRB(15, topSafeHeight + ReaderUtils.topOffset, 10, Screen.bottomSafeHeight + ReaderUtils.bottomOffset),
- child: Text.rich(
- TextSpan(children: [TextSpan(text: content, style: TextStyle(fontSize: fixedFontSize(ReaderConfig.instance.fontSize)))]),
- textAlign: TextAlign.justify,
- ),
- );
- }
- }
|