# Fab Academy Group Project

from tkinter import *
from tkinter import ttk  # Normal Tkinter.* widgets are not themed!
from ttkthemes import ThemedTk
from PIL import Image, ImageTk

root = ThemedTk(theme='Adapta')
root.geometry('500x350')
root.title('Pinball Machine')

# Define an action or behavior for the interface
def myClick():
    clickLabel = Label(root, text="Begin!")

# Creates a label with some text and places it somewhere in the grid
myLabel1 = Label(root, text="Hello, Pinball Machine!").grid(row=0,column=0)
myLabel2 = Label(root, text="SCORE:  ").grid(row=1,column=0)

# Buttons
startButton = Button(root, text="START", padx=50, pady=50, command=myClick()).grid(row=2,column=0)

#Loading Images
#im = Image.open("fab-academy.jpeg")
#render = ImageTk.PhotoImage(im)


root.mainloop()
