mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
@@ -390,7 +390,7 @@ class _InteractiveviewerGalleryState extends State<InteractiveviewerGallery>
|
||||
double targetScale = widget.minScale;
|
||||
|
||||
if (currentScale <= widget.minScale) {
|
||||
targetScale = widget.maxScale * 0.7;
|
||||
targetScale = widget.maxScale * 0.4;
|
||||
}
|
||||
|
||||
double offSetX = targetScale == 1.0
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -133,6 +133,7 @@ class _HtmlRenderPageState extends State<HtmlRenderPage>
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
resizeToAvoidBottomInset: false,
|
||||
appBar: AppBar(
|
||||
title: Text(title),
|
||||
actions: [
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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: '关闭',
|
||||
|
||||
Reference in New Issue
Block a user