feat(ui): chromeless three-island shell
This commit is contained in:
8
src/ClaudeDo.Ui/Views/Islands/DetailsIslandView.axaml
Normal file
8
src/ClaudeDo.Ui/Views/Islands/DetailsIslandView.axaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:vm="using:ClaudeDo.Ui.ViewModels.Islands"
|
||||
x:Class="ClaudeDo.Ui.Views.Islands.DetailsIslandView"
|
||||
x:DataType="vm:DetailsIslandViewModel">
|
||||
<TextBlock Margin="14" Text="Details (placeholder)"
|
||||
Foreground="{DynamicResource TextDimBrush}"/>
|
||||
</UserControl>
|
||||
8
src/ClaudeDo.Ui/Views/Islands/DetailsIslandView.axaml.cs
Normal file
8
src/ClaudeDo.Ui/Views/Islands/DetailsIslandView.axaml.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Avalonia.Controls;
|
||||
|
||||
namespace ClaudeDo.Ui.Views.Islands;
|
||||
|
||||
public partial class DetailsIslandView : UserControl
|
||||
{
|
||||
public DetailsIslandView() { InitializeComponent(); }
|
||||
}
|
||||
8
src/ClaudeDo.Ui/Views/Islands/ListsIslandView.axaml
Normal file
8
src/ClaudeDo.Ui/Views/Islands/ListsIslandView.axaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:vm="using:ClaudeDo.Ui.ViewModels.Islands"
|
||||
x:Class="ClaudeDo.Ui.Views.Islands.ListsIslandView"
|
||||
x:DataType="vm:ListsIslandViewModel">
|
||||
<TextBlock Margin="14" Text="Lists (placeholder)"
|
||||
Foreground="{DynamicResource TextDimBrush}"/>
|
||||
</UserControl>
|
||||
8
src/ClaudeDo.Ui/Views/Islands/ListsIslandView.axaml.cs
Normal file
8
src/ClaudeDo.Ui/Views/Islands/ListsIslandView.axaml.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Avalonia.Controls;
|
||||
|
||||
namespace ClaudeDo.Ui.Views.Islands;
|
||||
|
||||
public partial class ListsIslandView : UserControl
|
||||
{
|
||||
public ListsIslandView() { InitializeComponent(); }
|
||||
}
|
||||
8
src/ClaudeDo.Ui/Views/Islands/TasksIslandView.axaml
Normal file
8
src/ClaudeDo.Ui/Views/Islands/TasksIslandView.axaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:vm="using:ClaudeDo.Ui.ViewModels.Islands"
|
||||
x:Class="ClaudeDo.Ui.Views.Islands.TasksIslandView"
|
||||
x:DataType="vm:TasksIslandViewModel">
|
||||
<TextBlock Margin="14" Text="Tasks (placeholder)"
|
||||
Foreground="{DynamicResource TextDimBrush}"/>
|
||||
</UserControl>
|
||||
8
src/ClaudeDo.Ui/Views/Islands/TasksIslandView.axaml.cs
Normal file
8
src/ClaudeDo.Ui/Views/Islands/TasksIslandView.axaml.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Avalonia.Controls;
|
||||
|
||||
namespace ClaudeDo.Ui.Views.Islands;
|
||||
|
||||
public partial class TasksIslandView : UserControl
|
||||
{
|
||||
public TasksIslandView() { InitializeComponent(); }
|
||||
}
|
||||
Reference in New Issue
Block a user