You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
420 B
16 lines
420 B
using System.Collections.Generic;
|
|
|
|
namespace EnhancedScrollerDemos.NestedScrollers
|
|
{
|
|
/// <summary>
|
|
/// Main cell view data
|
|
/// </summary>
|
|
public class MasterData
|
|
{
|
|
// This value will store the position of the detail scroller to be used
|
|
// when the scroller's cell view is recycled
|
|
public float normalizedScrollPosition;
|
|
|
|
public List<DetailData> childData;
|
|
}
|
|
}
|