mod: pages

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-12-13 13:35:33 +08:00
parent 94d055610e
commit 1b71fd4ca6
7 changed files with 6 additions and 3 deletions

View File

@@ -113,6 +113,7 @@ class _DanmakuBlockPageState extends State<DanmakuBlockPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
appBar: AppBar(
title: TabBar(
controller: _danmakuBlockController.tabController,

View File

@@ -190,6 +190,7 @@ class _DynamicDetailPageState extends State<DynamicDetailPage>
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
appBar: AppBar(
title: StreamBuilder(
stream: _titleStreamC.stream,

View File

@@ -167,6 +167,7 @@ class _DynamicsPageState extends State<DynamicsPage>
Widget build(BuildContext context) {
super.build(context);
return Scaffold(
resizeToAvoidBottomInset: false,
backgroundColor: Colors.transparent,
appBar: AppBar(
leading: upPanelPosition == UpPanelPosition.rightDrawer

View File

@@ -133,6 +133,7 @@ class _HtmlRenderPageState extends State<HtmlRenderPage>
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
appBar: AppBar(
title: Text(title),
actions: [

View File

@@ -106,7 +106,7 @@ class _LiveRoomChatState extends State<LiveRoomChat> {
dynamic emots = obj['emots'];
dynamic uemote = obj['uemote'];
List list = [
if (emots != null) emots.keys,
if (emots != null) ...emots.keys,
if (uemote is Map) uemote['emoticon_unique'].replaceFirst('upower_', '')
];
if (list.isNotEmpty) {

View File

@@ -420,7 +420,6 @@ class _LoginPageState extends State<LoginPage> {
Widget build(BuildContext context) {
return OrientationBuilder(builder: (context, orientation) {
return Scaffold(
resizeToAvoidBottomInset: false,
appBar: AppBar(
leading: IconButton(
tooltip: '关闭',