Skip to content

Commit

Permalink
added fetch data view
Browse files Browse the repository at this point in the history
  • Loading branch information
cabiste69 committed Jul 22, 2023
1 parent 205e582 commit 759da39
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Views/FetchData/FetchDataView.axaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="CatApp.Views.FetchData.FetchDataView">
Welcome to Avalonia!
</UserControl>
11 changes: 11 additions & 0 deletions Views/FetchData/FetchDataView.axaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using Avalonia.Controls;

namespace CatApp.Views.FetchData;

public partial class FetchDataView : UserControl
{
public FetchDataView()
{
InitializeComponent();
}
}

0 comments on commit 759da39

Please sign in to comment.