background
This function opens the context for defining the background related properties for all media devices.
Example call:
background {
// some functions of [BackgroundContext] with appropriate values for *all devices*
}Parameters
extension function parameter to bring the specialized topical functions of the BackgroundContext into the scope of the functional expression
This function opens the context for defining the background related properties for each media device independently.
Example call:
background(
sm = {
// some functions of [BackgroundContext] with appropriate values for *small devices*
},
lg = {
// some functions of [BackgroundContext] with appropriate values for *large devices*
}
)
Parameters
extension function parameter to bring the specialized topical functions of the BackgroundContext into the scope of the functional expression for large media devices
extension function parameter to bring the specialized topical functions of the BackgroundContext into the scope of the functional expression for medium sized media devices
extension function parameter to bring the specialized topical functions of the BackgroundContext into the scope of the functional expression for small media devices
extension function parameter to bring the specialized topical functions of the BackgroundContext into the scope of the functional expression for extra large media devices