()
| 22 | |
| 23 | @staticmethod |
| 24 | def light(): |
| 25 | return ToggleSwitchColors( |
| 26 | container_background_color="#ffffff", |
| 27 | container_border_color="#e0e4ed", |
| 28 | active_icon_color="#ffffff", |
| 29 | non_active_icon_color="#7b849c", |
| 30 | active_switch_background_color="#1f5eff", |
| 31 | ) |
| 32 | |
| 33 | |
| 34 | class ToggleSwitch(ft.Container): |
no test coverage detected