test ing
test ing

Reputation: 1

How to resize hint_text in KivyMD?

I want a dynamic screen where widgets are resizable dependent on screen size (small screen, widgets are smaller). This works for most of my widgets with the exception of the MDTextField. I have a hint_text, where the font size does not scale with the screen. I tried using font_size dependent on window.width, but it doesn't seem to work properly.

Could someone help me please? Thanks:)

Here is a snippet of my current code:

BoxLayout:
   orientation: 'horizontal'

   spacing: "10dp"

   padding: "30dp"

   MDTextField:

      id: location_input

      hint_text: "Enter Location"

      font_size: (Window.width * 0.02) + 8

      pos_hint: {"x": 0.02, "bottom": 0.3}

Upvotes: 0

Views: 15

Answers (0)

Related Questions