pythonindia / PyCon-Mobile-App

PyCon India App developed with Kivy
GNU General Public License v3.0
31 stars 55 forks source link

Screens #42

Closed kiok46 closed 6 years ago

kiok46 commented 6 years ago

The structure and purpose:

data/
    images/
        social/
            facebook.png
            twitter.png
            github.png
            linkedin.png
            website.png
            proposal.png
        back_button.png # for navigating back from speaker screen,
    jsonfiles/
        ...
        schedule.json # Getting schedule data from this file.
        tracks.json # Getting speaker data from here.
uix/
    cards/
        __init__.py # import these from uix/schedulecards
        cardscontainer.py # Contains the ScrollView and a Container (for padding)
        schedulecard.py # These are the cards you see for each talk, (ButtonBehavior included)
        talkdetailcard.py 
        speakerdetailcard.py 
        sponsordetailcard.py
    screens/
        schedulescreen.py
        venuescreen.py
        speakerdetailscreen.py  # Contains SocialButton's implementation too.
        sponsorscreen.py
    tabbedpanels/
        __init__.py # Tabbed Panels 2 types: Top Blue ones for dates and the ones at the bottom for halls. The DateTabbedPanel is a parent to HallTabbedPanel
kiok46 commented 6 years ago

schedule_screen

kiok46 commented 6 years ago

Speaker Screen.

screen shot 2017-10-26 at 6 30 09 pm
kiok46 commented 6 years ago
screen shot 2017-10-28 at 12 14 29 pm

EDIT: could be merged

kiok46 commented 6 years ago

Ignore the content 😛 see the UI.

screen shot 2017-10-28 at 4 27 06 pm
akshayaurora commented 6 years ago

@kiok46 thanks 👍