Last active
August 29, 2015 14:13
-
-
Save tshirtman/a2361ddca083bf5c6b65 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#:import F kivy.factory.Factory | |
<TestView@ModalView>: | |
size_hint: .5, .5 | |
ScrollView: | |
size_hint: .9, .9 | |
pos_hint: {'center': (.5, .5)} | |
GridLayout: | |
cols: 10 | |
# this line is probably what you need | |
size_hint: None, None | |
size: self.minimum_size | |
#hack don't do that | |
on_parent: | |
for i in range(1000): self.add_widget(F.Label(text='test', size_hint=(None, None))) | |
FloatLayout: | |
Button: | |
size_hint: None, None | |
text: 'open me' | |
on_press: F.TestView().open() | |
pos_hint: {'center': (.5, .5)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment