From 96f08e39984e4e329ac6cced2b9e977bca2cc674 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Date: Wed, 7 Feb 2024 23:26:34 -0300 Subject: [PATCH] Update README.md - Remove duplicate menu --- README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/README.md b/README.md index c9031ecc3..96f6deaf3 100644 --- a/README.md +++ b/README.md @@ -455,20 +455,6 @@ lv.scr_load(scr) ``` -### Creating a screen with a button and a label -```python -scr = lv.obj() -btn = lv.button(scr) -btn.align(lv.scr_act(), lv.ALIGN.CENTER, 0, 0) -label = lv.label(btn) -label.set_text("Button") - -# Load the screen - -lv.scr_load(scr) - -``` - #### Creating an instance of a struct ```python symbolstyle = lv.style_t(lv.style_plain)