mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 11:34:45 +00:00
4ad021691f
Signed-off-by: Anton Danchenko <ant.danchenko@gmail.com>
15 lines
515 B
Python
15 lines
515 B
Python
import os
|
|
|
|
from views.base_element import BaseElement, InputField
|
|
from views.base_view import BaseView
|
|
|
|
IMAGES_PATH = os.path.join(os.path.dirname(__file__), 'images/home_view')
|
|
|
|
|
|
class HomeView(BaseView):
|
|
def __init__(self):
|
|
super(HomeView, self).__init__()
|
|
self.plus_button = BaseElement(IMAGES_PATH + '/plus_button.png')
|
|
self.contact_code_input = InputField(IMAGES_PATH + '/contact_code_input.png')
|
|
self.start_chat_button = BaseElement(IMAGES_PATH + '/start_chat_button.png')
|