Lines Matching refs:duration

19 PageTransitionEnter({type?: RouteType,duration?: number,curve?: Curve | string,delay?: number})
26 PageTransitionExit({type?: RouteType,duration?: number,curve?: Curve | string,delay?: number})
44 …// Configure the page entrance animation to sliding in from the left, with the duration of 1200 ms…
45 PageTransitionEnter({ type: RouteType.None, duration: 1200 })
47 …// Configure the page exit animation to sliding out from the left, with the duration of 1000 ms. T…
48 PageTransitionExit({ type: RouteType.None, duration: 1000 })
56 …// Configure the page entrance animation to sliding in from the right, with the duration of 1000 m…
57 PageTransitionEnter({ type: RouteType.None, duration: 1000 })
59 …// Configure the page exit animation to sliding out from the right, with the duration of 1200 ms. …
60 PageTransitionExit({ type: RouteType.None, duration: 1200 })
88 …// Configure the page entrance animation to sliding in from the right, with the duration of 1200 m…
89 PageTransitionEnter({ type: RouteType.Push, duration: 1200 })
91 …// Configure the page entrance animation to sliding in from the left, with the duration of 1200 ms…
92 PageTransitionEnter({ type: RouteType.Pop, duration: 1200 })
94 …// Configure the page exit animation to sliding out from the left, with the duration of 1000 ms. T…
95 PageTransitionExit({ type: RouteType.Push, duration: 1000 })
97 …// Configure the page exit animation to sliding out from the right, with the duration of 1000 ms. …
98 PageTransitionExit({ type: RouteType.Pop, duration: 1000 })
106 …// Configure the page entrance animation to sliding in from the right, with the duration of 1000 m…
107 PageTransitionEnter({ type: RouteType.Push, duration: 1000 })
109 …// Configure the page entrance animation to sliding in from the left, with the duration of 1000 ms…
110 PageTransitionEnter({ type: RouteType.Pop, duration: 1000 })
112 …// Configure the page exit animation to sliding out from the left, with the duration of 1200 ms. T…
113 PageTransitionExit({ type: RouteType.Push, duration: 1200 })
115 …// Configure the page exit animation to sliding out from the right, with the duration of 1200 ms. …
116 PageTransitionExit({ type: RouteType.Pop, duration: 1200 })
135 …s, take into account the smoothness between page transitions, for example, the transition duration.
145 PageTransitionEnter({ type: RouteType.None, duration: 0 })
146 PageTransitionExit({ type: RouteType.None, duration: 0 })
151 You can disable the transition animation of a page by setting the page transition duration to 0.
190 …// Configure the page entrance animation to sliding in from the right, with the duration of 1000 m…
191 PageTransitionEnter({ type: RouteType.Push, duration: 1000 })
193 …// Configure the page entrance animation to sliding in from the left, with the duration of 1000 ms…
194 PageTransitionEnter({ type: RouteType.Pop, duration: 1000 })
196 …// Configure the page exit animation to sliding out from the left, with the duration of 1000 ms. T…
197 PageTransitionExit({ type: RouteType.Push, duration: 1000 })
199 …// Configure the page exit animation to sliding out from the right, with the duration of 1000 ms. …
200 PageTransitionExit({ type: RouteType.Pop, duration: 1000 })
241 …// Configure the page entrance animation to sliding in from the right, with the duration of 1000 m…
242 PageTransitionEnter({ type: RouteType.Push, duration: 1000 })
244 …// Configure the page entrance animation to sliding in from the left, with the duration of 1000 ms…
245 PageTransitionEnter({ type: RouteType.Pop, duration: 1000 })
247 …// Configure the page exit animation to sliding out from the left, with the duration of 1000 ms. T…
248 PageTransitionExit({ type: RouteType.Push, duration: 1000 })
250 …// Configure the page exit animation to sliding out from the right, with the duration of 1000 ms. …
251 PageTransitionExit({ type: RouteType.Pop, duration: 1000 })
298 …// Configure the page entrance animation to sliding in from the left, with the duration of 1000 ms…
299 PageTransitionEnter({ duration: 1000 })
301 … 100 vp along the x- and y-axes and changing the opacity to 0, with the duration of 1200 ms. The s…
302 PageTransitionExit({ duration: 1200 })
343 …// Configure the page entrance animation to sliding in from the left, with the duration of 1200 ms…
344 PageTransitionEnter({ duration: 1200 })
346 … 100 vp along the x- and y-axes and changing the opacity to 0, with the duration of 1000 ms. The s…
347 PageTransitionExit({ duration: 1000 })