Function with_style
pub fn with_style<P>(
program: P,
f: impl Fn(&<P as Program>::State, &<P as Program>::Theme) -> Style,
) -> impl Program<State = <P as Program>::State, Message = <P as Program>::Message, Theme = <P as Program>::Theme>where
P: Program,Expand description
Decorates a Program with the given style function.