Skip to content

Commit

Permalink
Merge pull request #30 from Ramo-Y/bugfix/accessibility-touch-target-…
Browse files Browse the repository at this point in the history
…size

Bugfix/accessibility touch target size
  • Loading branch information
Ramo-Y authored Oct 13, 2024
2 parents 519deca + ebc2be4 commit 5a5fe9b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .dist/whatsnew/whatsnew-de-DE
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Absturz bei Betätigung des Buttons für Versionsinformationen behoben
- Button zum Teilen der App hinzugefügt
- Komponenten aktualisiert
- Komponenten aktualisiert
- Berührungszielgrösse der Felder in der Einstellungsansicht korrigiert
3 changes: 2 additions & 1 deletion .dist/whatsnew/whatsnew-en-US
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Fixed crash when version info button pressed
- Added button to share the app
- Updated the components
- Updated the components
- Fixed touch target size of the fields in the settings view
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<DisplayVersion>1.0.41</DisplayVersion>
<ApplicationVersion>41</ApplicationVersion>
<DisplayVersion>1.0.42</DisplayVersion>
<ApplicationVersion>42</ApplicationVersion>
<VersionPrefix>$(DisplayVersion)</VersionPrefix>
<ApplicationDisplayVersion>$(DisplayVersion)</ApplicationDisplayVersion>

Expand Down
12 changes: 6 additions & 6 deletions src/PersonalRecord.App/Views/SettingsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,34 @@
xmlns:resources="clr-namespace:PersonalRecord.Infrastructure.Resources.Languages;assembly=PersonalRecord.Infrastructure"
x:DataType="viewModels:SettingsViewModel"
Title="{x:Static resources:AppResources.Settings}">

<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="10"/>
<RowDefinition Height="95"/>
<RowDefinition Height="85"/>
<RowDefinition Height="5"/>
<RowDefinition Height="95"/>
<RowDefinition Height="85"/>
<RowDefinition Height="5"/>
<RowDefinition Height="35"/>
<RowDefinition Height="95"/>
<RowDefinition Height="85"/>
<RowDefinition Height="*"/>
<RowDefinition Height="55"/>
<RowDefinition Height="10"/>
</Grid.RowDefinitions>

<inputLayout:SfTextInputLayout Grid.Column="0" Grid.Row="1"
ContainerType="Outlined"
Content="{Binding Setting.Unit}"
Hint="{x:Static resources:AppResources.Unit}">
<Entry Text="{Binding Setting.Unit}" />
</inputLayout:SfTextInputLayout>

<inputLayout:SfTextInputLayout Grid.Column="0" Grid.Row="3"
ContainerType="Outlined"
Content="{Binding Setting.DateFormat}"
Hint="{x:Static resources:AppResources.DateFormat}">
<Entry Text="{Binding Setting.DateFormat}" />
</inputLayout:SfTextInputLayout>

<Label Grid.Column="0" Grid.Row="5"
Expand Down

0 comments on commit 5a5fe9b

Please sign in to comment.