diff --git a/Runtime/RecyclerView/readme.md b/Runtime/RecyclerView/readme.md deleted file mode 100644 index 2601c19..0000000 --- a/Runtime/RecyclerView/readme.md +++ /dev/null @@ -1,31 +0,0 @@ -Simple Test - -public class TestData : ISimpleViewData -{ -public string Name; -} - -public class TestRecyclerView : MonoBehaviour -{ -public RecyclerView itemListView; -public UGList list; - - void Start() - { - list = UGListCreateHelper.Create(itemListView, OnBtnItemClick); - - List datas = new(); - for (int i = 0; i < 150; i++) - { - datas.Add(new TestData { Name = $"Item {i}" }); - } - - list.Data = datas; - } - - private void OnBtnItemClick(TestData obj) - { - Debug.Log(obj.Name); - } - -} diff --git a/Runtime/RecyclerView/readme.md.meta b/Runtime/RecyclerView/readme.md.meta deleted file mode 100644 index 17462ea..0000000 --- a/Runtime/RecyclerView/readme.md.meta +++ /dev/null @@ -1,3 +0,0 @@ -fileFormatVersion: 2 -guid: c0bd5104eb4344798791ff94b29eb63b -timeCreated: 1766730473 \ No newline at end of file