20 lines
518 B
Python
20 lines
518 B
Python
import tkinter as tk
|
|
from tkinter import ttk, messagebox
|
|
|
|
|
|
class FrameAdocao(tk.Frame):
|
|
def __init__(self, master=None, bd=None):
|
|
super().__init__(master, bg="#1e1e1e")
|
|
self.bd = bd
|
|
self._criar_layout()
|
|
|
|
def _criar_layout(self):
|
|
# Título da seção
|
|
titulo_label = tk.Label(
|
|
self,
|
|
text="GERENCIAR ADOÇÕES",
|
|
font=("Arial", 24, "bold"),
|
|
bg="#1e1e1e",
|
|
fg="white"
|
|
)
|
|
titulo_label.pack(pady=20) |