carbonkivy.uix.screen

Submodules

Classes

CScreen

Screen is an element intended to be used with a ScreenManager.

Package Contents

class carbonkivy.uix.screen.CScreen(*args, **kwargs)[source]

Bases: carbonkivy.behaviors.BackgroundColorBehaviorRectangular, kivy.uix.screenmanager.Screen, carbonkivy.behaviors.DeclarativeBehavior

Screen is an element intended to be used with a ScreenManager. Check module documentation for more information.

Events:
on_pre_enter: ()

Event fired when the screen is about to be used: the entering animation is started.

on_enter: ()

Event fired when the screen is displayed: the entering animation is complete.

on_pre_leave: ()

Event fired when the screen is about to be removed: the leaving animation is started.

on_leave: ()

Event fired when the screen is removed: the leaving animation is finished.

Changed in version 1.6.0: Events on_pre_enter, on_enter, on_pre_leave and on_leave were added.