Skip to content

Commit

Permalink
fix: ios ui padding
Browse files Browse the repository at this point in the history
  • Loading branch information
singularity-s0 committed Aug 12, 2021
1 parent 8532ea9 commit 3a9c1b4
Show file tree
Hide file tree
Showing 9 changed files with 169 additions and 163 deletions.
18 changes: 9 additions & 9 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_TEAM = QZ9KCS2T78;
ENABLE_BITCODE = YES;
INFOPLIST_FILE = Runner/Info.plist;
Expand Down Expand Up @@ -700,7 +700,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_TEAM = QZ9KCS2T78;
GCC_C_LANGUAGE_STANDARD = gnu11;
IBSC_MODULE = nano_Extension;
Expand Down Expand Up @@ -734,7 +734,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_TEAM = QZ9KCS2T78;
GCC_C_LANGUAGE_STANDARD = gnu11;
IBSC_MODULE = nano_Extension;
Expand Down Expand Up @@ -765,7 +765,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_TEAM = QZ9KCS2T78;
GCC_C_LANGUAGE_STANDARD = gnu11;
IBSC_MODULE = nano_Extension;
Expand Down Expand Up @@ -793,7 +793,7 @@
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_ASSET_PATHS = "\"nano Extension/Preview Content\"";
DEVELOPMENT_TEAM = QZ9KCS2T78;
ENABLE_PREVIEWS = YES;
Expand Down Expand Up @@ -830,7 +830,7 @@
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_ASSET_PATHS = "\"nano Extension/Preview Content\"";
DEVELOPMENT_TEAM = QZ9KCS2T78;
ENABLE_PREVIEWS = YES;
Expand Down Expand Up @@ -864,7 +864,7 @@
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_ASSET_PATHS = "\"nano Extension/Preview Content\"";
DEVELOPMENT_TEAM = QZ9KCS2T78;
ENABLE_PREVIEWS = YES;
Expand Down Expand Up @@ -1010,7 +1010,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = QZ9KCS2T78;
ENABLE_BITCODE = YES;
Expand Down Expand Up @@ -1042,7 +1042,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 49;
CURRENT_PROJECT_VERSION = 50;
DEVELOPMENT_TEAM = QZ9KCS2T78;
ENABLE_BITCODE = YES;
INFOPLIST_FILE = Runner/Info.plist;
Expand Down
2 changes: 1 addition & 1 deletion lib/page/aao_notices.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class _AAONoticesListState extends State<AAONoticesList> {
@override
Widget build(BuildContext context) {
return PlatformScaffold(
iosContentBottomPadding: true,
iosContentBottomPadding: false,
iosContentPadding: false,
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
appBar: PlatformAppBarX(
Expand Down
3 changes: 2 additions & 1 deletion lib/page/bbs_post.dart
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ class _BBSPostDetailState extends State<BBSPostDetail> {
],
),
body: SafeArea(
bottom: false,
child: RefreshIndicator(
color: Theme.of(context).accentColor,
backgroundColor: Theme.of(context).dialogBackgroundColor,
Expand Down Expand Up @@ -500,7 +501,7 @@ class _BBSPostDetailState extends State<BBSPostDetail> {
child: isNested
// If content is being quoted, limit its height so that the view won't be too long.
? Linkify(
text: renderText(
text: renderText(
e.filteredContent, S.of(context).image_tag)
.trim(),
textScaleFactor: 0.8,
Expand Down
1 change: 1 addition & 0 deletions lib/page/bus.dart
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ class _BusPageState extends State<BusPage> {
controller: PrimaryScrollController.of(context),
child: Text(S.of(context).bus_query))),
body: SafeArea(
bottom: false,
child: Column(
children: [
Padding(
Expand Down
1 change: 1 addition & 0 deletions lib/page/dashboard_reorder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class _DashboardReorderPage extends State<DashboardReorderPage> {
iosContentPadding: false,
appBar: PlatformAppBarX(title: Text(S.of(context).dashboard_layout)),
body: SafeArea(
bottom: false,
child: Material(
child: WithScrollbar(
child: ReorderableListView(
Expand Down
Loading

0 comments on commit 3a9c1b4

Please sign in to comment.