Skip to content

Commit

Permalink
Fix locale spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Oct 30, 2023
1 parent 731a5a0 commit 23f8a2e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

| Version | Supported | |
| ------- | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------- |
| 2.0-dev | :warning: | [Docs](https://docs.butterfly.linwood.dev/docs/2.0/intro) [Release](https://github.com/LinwoodDev/butterfly/releases/tag/v2.0.0-beta.11) |
| 2.0-dev | :warning: | [Docs](https://docs.butterfly.linwood.dev/docs/2.0/intro) [Release](https://github.com/LinwoodDev/butterfly/releases/tag/v2.0.0-beta.13) |
| 1.6.1 | :white_check_mark: | [Docs](https://docs.butterfly.linwood.dev/docs/1.6/intro) [Release](https://github.com/LinwoodDev/butterfly/releases/tag/v1.6.1) |
| 1.5.1 | :x: | [Docs](https://docs.butterfly.linwood.dev/docs/1.5/intro) [Release](https://github.com/LinwoodDev/butterfly/releases/tag/v1.5.1) |
| 1.4.4 | :x: | [Docs](https://docs.butterfly.linwood.dev/docs/1.4/intro) [Release](https://github.com/LinwoodDev/butterfly/releases/tag/v1.4.4) |
Expand Down
1 change: 0 additions & 1 deletion app/lib/settings/personalization.dart
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@ class PersonalizationSettingsPage extends StatelessWidget {
title: Text(AppLocalizations.of(context).defaultLocale),
selected: currentLocale.isEmpty,
onTap: () => changeLocale(null)),
const SizedBox(height: 32),
...locales.map((e) => ListTile(
title: Text(_getLocaleName(context, e.toLanguageTag())),
selected: currentLocale == e.toLanguageTag(),
Expand Down
6 changes: 3 additions & 3 deletions app/lib/views/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class _HomePageState extends State<HomePage> {
child: Align(
alignment: Alignment.topCenter,
child: Container(
margin: const EdgeInsets.symmetric(horizontal: 32),
margin: const EdgeInsets.symmetric(horizontal: 16),
constraints: const BoxConstraints(maxWidth: 1400),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
Expand Down Expand Up @@ -152,9 +152,9 @@ class _HomePageState extends State<HomePage> {
onRemoteChanged: (value) =>
setState(() => _remote = value),
)),
const SizedBox(width: 32),
const SizedBox(width: 16),
SizedBox(
width: 500,
width: 400,
child: quickStart,
),
],
Expand Down
4 changes: 2 additions & 2 deletions app/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -452,10 +452,10 @@ packages:
dependency: "direct dev"
description:
name: flutter_native_splash
sha256: "5bf4c3e5e5a0426c1e2fc8ca3555a9e617e76369c3442e1dae8385c7767ba97a"
sha256: d93394f22f73e810bda59e11ebe83329c5511d6460b6b7509c4e1f3c92d6d625
url: "https://pub.dev"
source: hosted
version: "2.3.4"
version: "2.3.5"
flutter_plugin_android_lifecycle:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dependencies:
popover: ^0.2.8+2
markdown: ^7.1.1
dev_dependencies:
flutter_native_splash: ^2.3.4
flutter_native_splash: ^2.3.5
#flutter_launcher_icons: ^0.11.0
flutter_lints: ^3.0.0
flutter_test:
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/78.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Add cursor to path eraser
* Fix locale spacing

View all changes in the blog: https://linwood.dev/butterfly/2.0.0-beta.14

0 comments on commit 23f8a2e

Please sign in to comment.