-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAnimatedList.ux
49 lines (42 loc) · 1.23 KB
/
AnimatedList.ux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!-- snippet-begin:App -->
<App Background="#eee">
<DockPanel>
<JavaScript>
var Observable = require("FuseJS/Observable");
var items = Observable();
function addItem() {
items.add({ text: "This is an item" });
}
function removeItem(sender) {
items.remove(sender.data);
}
module.exports = {
items: items,
addItem: addItem,
removeItem: removeItem
};
</JavaScript>
<StatusBarBackground Dock="Top" />
<Basic.Button Text="Add item" Clicked="{addItem}" Dock="Top" />
<ScrollView>
<StackPanel>
<Each Items="{items}">
<DockPanel Padding="10" Margin="0,1" Background="#fff">
<Text Value="{text}" Alignment="CenterLeft" />
<Basic.Button Text="Delete" Clicked="{removeItem}" Dock="Right" />
<LayoutAnimation>
<Move RelativeTo="LayoutChange" Y="1" Duration="0.8" Easing="ElasticIn" />
</LayoutAnimation>
<AddingAnimation>
<Move RelativeTo="Size" X="1" Duration="0.3" Easing="CircularIn" />
</AddingAnimation>
<RemovingAnimation>
<Move RelativeTo="Size" X="-1" Duration="0.4" Easing="CircularOut" />
</RemovingAnimation>
</DockPanel>
</Each>
</StackPanel>
</ScrollView>
</DockPanel>
</App>
<!-- snippet-end -->