Skip to content

Instantly share code, notes, and snippets.

View Afacanc38's full-sized avatar
🎯
Focusing

Alperen İsa Nalbant Afacanc38

🎯
Focusing
View GitHub Profile
import gi, sys
gi.require_version('Gtk', '4.0')
gi.require_version('Adw', '1')
from gi.repository import Gtk, Adw, GLib
class MainWindow(Adw.ApplicationWindow):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
GLib.set_application_name("Gtk Overlay")
GLib.set_prgname("Gtk Examples by Afacanc38")
@Afacanc38
Afacanc38 / gtk4-search-example-python-pygobject-libadwaita-2022.py
Last active January 25, 2023 13:12
Gtk4 SearchBar Example Python 2022
# Thanks to @keremgokcek for helping to make the search action.
import gi, sys
gi.require_version (
'Gtk',
'4.0'
)
gi.require_version (
'Adw',
'1'
)