Files
Nitrox/Nitrox.Launcher/Views/LibraryView.axaml
2025-07-06 00:23:46 +02:00

20 lines
740 B
XML

<UserControl
d:DesignWidth="1000"
mc:Ignorable="d"
x:Class="Nitrox.Launcher.Views.LibraryView"
x:DataType="vm:LibraryViewModel"
xmlns="https://github.com/avaloniaui"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="clr-namespace:Nitrox.Launcher.ViewModels"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Design.DataContext>
<vm:LibraryViewModel />
</Design.DataContext>
<!-- TODO: WIP -->
<ScrollViewer Classes="main">
<Grid Background="{DynamicResource BrandWhite}">
<TextBlock Text="Library View" />
</Grid>
</ScrollViewer>
</UserControl>