Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added eventsapp/data/images/bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified eventsapp/data/images/btn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified eventsapp/data/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added eventsapp/data/images/logocopy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added eventsapp/data/images/pattern.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion eventsapp/data/jsonfiles/about.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"0.0.1": [
{
"logo": "eventsapp/data/images/logo.png",
"logo": "data/images/logo.png",
"website":"https://in.pycon.org/2018/",
"about":"PyCon India, the premier conference in India on using and developing the Python programming language is conducted annually by the Python developer community. It attracts the best Python programmers from across the country and abroad.",
"photo": "https://paste.opensuse.org/images/85253798.png",
Expand Down
2 changes: 1 addition & 1 deletion eventsapp/uix/buttons/themebutton.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ThemeButton(Button):

Builder.load_string('''
<ThemeButton>:
font_size: dp(18)
font_size: dp(12)
border: 10, 10, 10, 10
background_normal: root.background_normal
background_down: root.background_down
Expand Down
4 changes: 2 additions & 2 deletions eventsapp/uix/screens/aboutscreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ class AboutScreen(Screen):
id: about
text: ''
text_size: self.size
halign: 'left'
halign: 'center'
valign: 'top'
font_size: dp(11)
font_size: dp(10)
color: 0, 0, 0, 1
Expand Down
2 changes: 1 addition & 1 deletion eventsapp/uix/screens/navigationscreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def on_menu_press(self):
spacing: dp(15)
canvas.before:
Color:
rgba: 69/255., 132/255., 182/255., 1
rgba: 81/255., 47/255., 122/255., 1
Rectangle:
size: self.size
pos: self.pos
Expand Down
4 changes: 2 additions & 2 deletions eventsapp/uix/screens/openspacescreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ class OpenSpaceScreen(Screen):
text_size: self.size
halign: 'center'
valign: 'center'
font_size: dp(10)
font_size: dp(8)
bold: True
color: 0, 0, 0, 1
Label:
id: about
text: ''
text_size: self.size
halign: 'left'
halign: 'center'
valign: 'top'
font_size: dp(10)
color: 0, 0, 0, 1
Expand Down
24 changes: 13 additions & 11 deletions eventsapp/uix/screens/welcomescreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,36 @@
from uix.buttons import ThemeButton



class WelcomeScreen(Screen):

Builder.load_string('''
<WelcomeScreen>
name: 'WelcomeScreen'
canvas.before:
Color:
rgba: 1, 1, 1, 1
Rectangle:
pos: self.pos
size: self.size
BoxLayout
orientation: 'vertical'
TopBar
title: 'PyCon India 2018'
color: 196, 12, 76, 1
RelativeLayout
Image
source: 'data/images/navback.png'
allow_stretch: True
keep_ratio: False
RelativeLayout
Image
source: 'data/images/overlay.png'
allow_stretch: True
keep_ratio: False
source: 'data/images/logocopy.png'
allow_stretch: False
keep_ratio: True
BoxLayout
orientation: 'vertical'
Label
text: 'Welcome to\\n PyCon India 2018'
text_size: self.size
valign: 'center'
halign: 'center'
font_size: dp(34)
color: 1, 1, 1, 1
font_size: dp(22)
color: 1,1,1,0
bold: True
BoxLayout
orientation: 'vertical'
Expand Down