Skip to content

Commit

Permalink
feat: add a description to ImportExport page
Browse files Browse the repository at this point in the history
  • Loading branch information
therazix committed Jun 3, 2024
1 parent 4b7e802 commit d8893f2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Diary/Diary/Views/ImportExport/ImportExportView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,22 @@
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>

<Button
<Label
Grid.Row="0"
Margin="0,10,0,15"
FontSize="Medium"
HorizontalOptions="CenterAndExpand"
Text="Here you can export and import all of your data." />

<Button
Grid.Row="1"
Command="{Binding ExportCommand}"
Text="Export" />
<Button
Grid.Row="1"
Grid.Row="2"
Command="{Binding ImportCommand}"
Text="Import" />
</Grid>
Expand Down

0 comments on commit d8893f2

Please sign in to comment.