A framework for creating user interfaces for GNOME with an API similar to SwiftUI https://adwaita-swift.aparoksha.dev/
Go to file
david-swift 4559a81337
All checks were successful
Deploy Docs / publish (push) Successful in 21m2s
SwiftLint / SwiftLint (push) Successful in 5s
Update to versions 0.1.0 of packages
2024-10-17 20:01:51 +02:00
.gitea Rename .github to .gitea 2024-10-07 11:38:36 +02:00
Icons Remove deprecated documentation sources and references 2024-03-31 20:59:14 +02:00
Sources Separate AnyView extensions from widgets 2024-10-16 14:22:34 +02:00
.gitignore Migrate to the Aparoksha Gitea instance 2024-10-07 11:18:13 +02:00
.spi.yml Migrate to the Aparoksha Gitea instance 2024-10-07 11:18:13 +02:00
.swiftlint.yml Separate AnyView extensions from widgets 2024-10-16 14:22:34 +02:00
io.github.AparokshaUI.Demo.json Update to Swift 6 2024-09-30 22:31:07 +02:00
LICENSE.md Add support for auto-generated widget bindings 2024-01-22 21:45:31 +01:00
Package.swift Update to versions 0.1.0 of packages 2024-10-17 20:01:51 +02:00
README.md Migrate to the Aparoksha Gitea instance 2024-10-07 11:18:13 +02:00

Adwaita Icon

Adwaita for Swift

Documentation · Code

Adwaita is a framework for creating user interfaces for GNOME with an API similar to SwiftUI.

The following code:

struct Counter: View {

    @State private var count = 0

    var view: Body {
        HStack {
            Button(icon: .default(icon: .goPrevious)) {
                count -= 1
            }
            Text("\(count)")
                .title1()
                .frame(minWidth: 100)
            Button(icon: .default(icon: .goNext)) {
                count += 1
            }
        }
    }

}

Describes a simple counter view:

Counter Example

More examples are available in the demo app.

Table of Contents

Goals

Adwaitas main goal is to provide an easy-to-use interface for creating GNOME apps. The backend should stay as simple as possible, while not limiting the possibilities there are with Libadwaita and GTK.

If you want to use Adwaita in a project, but there are widgets missing, open an issue.

Find more information about the project's motivation in this blog post.

Installation

Dependencies

Flatpak

It is recommended to develop apps inside of a Flatpak. That way, you don't have to install Swift or any of the dependencies on your system, and you always have access to the latest versions. Take a look at the template repository. This works on Linux only.

Directly on System

You can also run your apps directly on the system.

If you are using a Linux distribution, install libadwaita-devel or libadwaita (or something similar, based on the package manager) as well as gtk4-devel, gtk4 or similar.

On macOS, follow these steps:

  1. Install Homebrew.
  2. Install Libadwaita (and thereby GTK 4):
brew install libadwaita

Swift Package

  1. Open your Swift package in GNOME Builder, Xcode, or any other IDE.
  2. Open the Package.swift file.
  3. Into the Package initializer, under dependencies, paste:
.package(url: "https://git.aparoksha.dev/aparoksha/adwaita-swift", from: "0.1.0")   

Usage

I recommend using the template repository as a starting point.

Follow the interactive tutorial or read the docs in order to get to know Adwaita for Swift.

Thanks

Dependencies

Other Thanks

  • The auto-generation of widgets is based on Swift Cross UI
  • SwiftLint for checking whether code style conventions are violated
  • The programming language Swift