Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
multitouch
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
multitouch
Commits
dd4d79de
Commit
dd4d79de
authored
Feb 29, 2012
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added README, ignore file and Hello World program that uses the KiVy library.
parents
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
0 deletions
+20
-0
.gitignore
.gitignore
+3
-0
README.txt
README.txt
+2
-0
main.bat
main.bat
+2
-0
main.py
main.py
+13
-0
No files found.
.gitignore
0 → 100644
View file @
dd4d79de
*.pyc
*.swp
*~
README.txt
0 → 100644
View file @
dd4d79de
Use main.bat to run on a Windows machine, run main.py on a Linux machine.
\ No newline at end of file
main.bat
0 → 100644
View file @
dd4d79de
C
:\Kivy
-
1
.1.1\kivy.bat
main
.py
\ No newline at end of file
main.py
0 → 100644
View file @
dd4d79de
#!/usr/bin/env python
import
kivy
kivy
.
require
(
'1.0.6'
)
# replace with your current kivy version !
from
kivy.app
import
App
from
kivy.uix.button
import
Button
class
MyApp
(
App
):
def
build
(
self
):
return
Button
(
text
=
'Hello World'
)
if
__name__
in
(
'__android__'
,
'__main__'
):
MyApp
().
run
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment