I am a seasoned VBA coder and have now found the need to convert my Windows OS App I developed in Excel into an Android App... No previous Python or Kivy experience...
Demo
I am about half way through... I am needing to insert a carousel which will house the library for my bottles behind the slider in front of the background image...
I am certain it is a level issue but just can't figure it out... The demo video will give you an idea of what I am trying to accomplish...
<EzLaunchScreen>:
name: 'EzLaunch'
val_text: ToT_label
slide_text: slider_label
# This is for the BackGround Image
canvas.before:
Rectangle:
#background_color: 50, 0, 0, 0
pos: self.pos
size: self.size
source: 'Images\launchscreen.png'
BoxLayout:
orientation: 'vertical'
size: root.width, root.height
Slider:
min: 0
max: 30
step: .25
orientation: 'vertical'
on_value: root.slide_it(*args)
Widget:
size_hint: (.05, 0.905)
pos_hint: {'center_x': 0.50, 'center_y': .490}
Carousel:
direction: 'right'
Button:
Image:
source: 'Images\Carousel\Jose-Cuervo.png'
Button
Image:
source: 'Images\Carousel\Absolut.png'
Trusting for some direction...Any advice will be appreciated...
This is the output I am getting...
Current Output
Thanks guys & gals...
Tried so many variations...
Cross posted HERE
SOLVED-----> HERE