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;
|
double targetScale = widget.minScale;
|
||||||
|
|
||||||
if (currentScale <= widget.minScale) {
|
if (currentScale <= widget.minScale) {
|
||||||
targetScale = widget.maxScale * 0.7;
|
targetScale = widget.maxScale * 0.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
double offSetX = targetScale == 1.0
|
double offSetX = targetScale == 1.0
|
||||||
|
|||||||
@@ -113,6 +113,7 @@ class _DanmakuBlockPageState extends State<DanmakuBlockPage> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
|
resizeToAvoidBottomInset: false,
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: TabBar(
|
title: TabBar(
|
||||||
controller: _danmakuBlockController.tabController,
|
controller: _danmakuBlockController.tabController,
|
||||||
|
|||||||
@@ -190,6 +190,7 @@ class _DynamicDetailPageState extends State<DynamicDetailPage>
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
|
resizeToAvoidBottomInset: false,
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: StreamBuilder(
|
title: StreamBuilder(
|
||||||
stream: _titleStreamC.stream,
|
stream: _titleStreamC.stream,
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ class _DynamicsPageState extends State<DynamicsPage>
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
super.build(context);
|
super.build(context);
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
|
resizeToAvoidBottomInset: false,
|
||||||
backgroundColor: Colors.transparent,
|
backgroundColor: Colors.transparent,
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
leading: upPanelPosition == UpPanelPosition.rightDrawer
|
leading: upPanelPosition == UpPanelPosition.rightDrawer
|
||||||
|
|||||||
@@ -133,6 +133,7 @@ class _HtmlRenderPageState extends State<HtmlRenderPage>
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
|
resizeToAvoidBottomInset: false,
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: Text(title),
|
title: Text(title),
|
||||||
actions: [
|
actions: [
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ class _LiveRoomChatState extends State<LiveRoomChat> {
|
|||||||
dynamic emots = obj['emots'];
|
dynamic emots = obj['emots'];
|
||||||
dynamic uemote = obj['uemote'];
|
dynamic uemote = obj['uemote'];
|
||||||
List list = [
|
List list = [
|
||||||
if (emots != null) emots.keys,
|
if (emots != null) ...emots.keys,
|
||||||
if (uemote is Map) uemote['emoticon_unique'].replaceFirst('upower_', '')
|
if (uemote is Map) uemote['emoticon_unique'].replaceFirst('upower_', '')
|
||||||
];
|
];
|
||||||
if (list.isNotEmpty) {
|
if (list.isNotEmpty) {
|
||||||
|
|||||||
@@ -420,7 +420,6 @@ class _LoginPageState extends State<LoginPage> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return OrientationBuilder(builder: (context, orientation) {
|
return OrientationBuilder(builder: (context, orientation) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
resizeToAvoidBottomInset: false,
|
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
leading: IconButton(
|
leading: IconButton(
|
||||||
tooltip: '关闭',
|
tooltip: '关闭',
|
||||||
|
|||||||
Reference in New Issue
Block a user