Styling changes
This commit is contained in:
parent
1e7e71f29d
commit
7d2f3f9553
@ -75,13 +75,11 @@ namespace Aurora.Design.Components.HorizontalList
|
||||
_scrollView = new ScrollView();
|
||||
_itemsStackLayout = new StackLayout
|
||||
{
|
||||
BackgroundColor = BackgroundColor,
|
||||
Padding = Padding,
|
||||
Spacing = Spacing,
|
||||
HorizontalOptions = LayoutOptions.FillAndExpand
|
||||
};
|
||||
|
||||
_scrollView.BackgroundColor = BackgroundColor;
|
||||
_scrollView.Content = _itemsStackLayout;
|
||||
Children.Add(_scrollView);
|
||||
}
|
||||
@ -120,7 +118,6 @@ namespace Aurora.Design.Components.HorizontalList
|
||||
_itemsStackLayout.Children.Add(GetItemView(item));
|
||||
}
|
||||
|
||||
_itemsStackLayout.BackgroundColor = BackgroundColor;
|
||||
SelectedItem = null;
|
||||
}
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
<ContentView.Content>
|
||||
<StackLayout>
|
||||
<hl:HorizontalList
|
||||
BackgroundColor="Transparent"
|
||||
BackgroundColor="Red"
|
||||
x:Name="MembersHorizontalList"
|
||||
ListOrientation="Horizontal"
|
||||
VerticalOptions="Start">
|
||||
|
@ -29,6 +29,10 @@
|
||||
background-color: #626363;
|
||||
}
|
||||
|
||||
#Content {
|
||||
margin-right: 10;
|
||||
}
|
||||
|
||||
#Modal {
|
||||
height: 500;
|
||||
width: 400;
|
||||
|
@ -29,7 +29,6 @@ namespace Aurora.Design.Views.Main
|
||||
public delegate Task SetPlayerDelegate(BaseMedia media, PlayAction action);
|
||||
public delegate bool GetIsPlayingDelegate();
|
||||
public delegate void ShowModalDelegate(Type view, BaseDialogViewModel viewModel);
|
||||
|
||||
public delegate void HideModalDelegate();
|
||||
public delegate void FinishDialogDelegate();
|
||||
|
||||
|
@ -10,7 +10,6 @@
|
||||
<ContentView.Content>
|
||||
<StackLayout
|
||||
x:Name="Container"
|
||||
BackgroundColor="blue"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="Start">
|
||||
<Label
|
||||
|
@ -24,7 +24,6 @@
|
||||
x:Name="PartyMembersLabel"
|
||||
Text="Party Members"/>
|
||||
<ml:MemberList
|
||||
BackgroundColor="Transparent"
|
||||
x:Name="MembersList"
|
||||
VerticalOptions="FillAndExpand"
|
||||
Members="{Binding Members}"/>
|
||||
|
Reference in New Issue
Block a user