Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
multitouch
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
multitouch
Commits
dd4d79de
Commit
dd4d79de
authored
13 years ago
by
Taddeus Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Added README, ignore file and Hello World program that uses the KiVy library.
parents
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
README.txt
+2
-0
2 additions, 0 deletions
README.txt
main.bat
+2
-0
2 additions, 0 deletions
main.bat
main.py
+13
-0
13 additions, 0 deletions
main.py
with
20 additions
and
0 deletions
.gitignore
0 → 100644
+
3
−
0
View file @
dd4d79de
*.pyc
*.swp
*~
This diff is collapsed.
Click to expand it.
README.txt
0 → 100644
+
2
−
0
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
This diff is collapsed.
Click to expand it.
main.bat
0 → 100644
+
2
−
0
View file @
dd4d79de
C
:\Kivy
-
1
.1.1\kivy.bat
main
.py
\ No newline at end of file
This diff is collapsed.
Click to expand it.
main.py
0 → 100644
+
13
−
0
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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment