We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f260e commit 68de030Copy full SHA for 68de030
1 file changed
samples/Unity.Mvvm.ToDoList/Assets/Scripts/BindableUIElements/BindableTaskScrollView.cs
@@ -1,9 +1,17 @@
1
-using UnityMvvmToolkit.UITK.BindableUIElements;
+using UnityEngine.UIElements;
2
+using UnityMvvmToolkit.UITK.BindableUIElements;
3
using ViewModels;
4
5
namespace BindableUIElements
6
{
7
public partial class BindableTaskScrollView : BindableScrollView<TaskItemViewModel>
8
9
+ public override void Initialize()
10
+ {
11
+ base.Initialize();
12
+
13
+ contentViewport.style.overflow = Overflow.Visible;
14
+ contentContainer.style.overflow = Overflow.Visible;
15
+ }
16
}
17
0 commit comments