Initial commit for a party view which displays members and the shared queue
This commit is contained in:
@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
using System.Windows.Input;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Movies.Controls
|
||||
namespace Aurora.Frontend.Components.HorizontalList
|
||||
{
|
||||
public class HorizontalList : Grid
|
||||
{
|
||||
@ -62,7 +62,7 @@ namespace Movies.Controls
|
||||
|
||||
public HorizontalList()
|
||||
{
|
||||
BackgroundColor = Color.FromHex("#1E2634");
|
||||
// BackgroundColor = Color.FromHex("#1E2634");
|
||||
Spacing = 6;
|
||||
_scrollView = new ScrollView();
|
||||
_itemsStackLayout = new StackLayout
|
||||
@ -83,7 +83,7 @@ namespace Movies.Controls
|
||||
_itemsStackLayout.Children.Clear();
|
||||
_itemsStackLayout.Spacing = Spacing;
|
||||
|
||||
_innerSelectedCommand = new Command<View>(view =>
|
||||
_innerSelectedCommand = new Command<View>(view =>
|
||||
{
|
||||
SelectedItem = view.BindingContext;
|
||||
SelectedItem = null; // Allowing item second time selection
|
||||
|
Reference in New Issue
Block a user