Esempio n. 1
0
 public static SectionStack Title(this SectionStack stack, IComponent component)
 {
     stack.AddAnimatedTitle(component);
     return(stack);
 }
Esempio n. 2
0
 public static SectionStack Children(this SectionStack stack, params IComponent[] children)
 {
     children.ForEach(x => stack.Section(x));
     return(stack);
 }
Esempio n. 3
0
 public static SectionStack Section(this SectionStack stack, IComponent component, bool grow = false, string customPadding = "")
 {
     stack.AddAnimated(component, grow, customPadding);
     return(stack);
 }