Metadata-Version: 2.1
Name: ScrollableFrame
Version: 0.0.4
Summary: Your tkinter ScrollableFrame
Home-page: https://github.com/larryw3i/ScrollableFrame
Author: larryw3i
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# ScrollableFrame
Your tkinter ScrollableFrame

```python
from tkinter import *
from ScrollableFrame import *

root = Tk()
# It's no different from tkinter's Frame,
# orient(The orient of scroolbar): 0 -> VERTICAL, 1->HORIZONTAL, 2->both
sf = ScrollableFrame(root, orient = 2 , height=180, width=360) # :-)
Label(sf.frame, text=("(^_^)"*20+'\n')*20).pack()
sf.pack()
root.mainloop()
```


