Skip to content

Commit 3632edb

Browse files
committed
Mention SwiftUI support in the README
1 parent 752415b commit 3632edb

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ See [Why Adopt GRDB?](Documentation/WhyAdoptGRDB.md) if you are looking for your
6363

6464
## Features
6565

66-
GRDB ships with:
66+
Programming tools for both database beginners and SQLite experts:
6767

6868
- [Access to raw SQL and SQLite](#sqlite-api)
6969
- [Records](#records): Fetching and persistence methods for your custom structs and class hierarchies.
@@ -72,18 +72,21 @@ GRDB ships with:
7272
- [WAL Mode Support](#database-pools): Extra performance for multi-threaded applications.
7373
- [Migrations]: Transform your database as your application evolves.
7474
- [Database Observation]: Observe database changes and transactions.
75-
- [Swift Concurrency]: `try await` your database (Xcode 13.3.1+).
76-
- [Combine Support]: Access and observe the database with Combine publishers.
77-
- [RxSwift Support](http://github.com/RxSwiftCommunity/RxGRDB): Access and observe the database with RxSwift observables.
7875
- [Full-Text Search]
7976
- [Encryption](#encryption)
8077
- [Support for Custom SQLite Builds](Documentation/CustomSQLiteBuilds.md)
8178

79+
In-depth integration with our programming environment:
80+
81+
- [Swift Concurrency]: `try await` your database (Xcode 13.3.1+).
82+
- [SwiftUI](http://github.com/groue/GRDBQuery): Access and observe the database from your SwiftUI views.
83+
- [Combine](Documentation/Combine.md): Access and observe the database with Combine publishers.
84+
- [RxSwift](http://github.com/RxSwiftCommunity/RxGRDB): Access and observe the database with RxSwift observables.
8285

8386
## Usage
8487

8588
<details open>
86-
<summary>Start using the database in four easy steps</summary>
89+
<summary>Start using the database in four steps</summary>
8790

8891
```swift
8992
import GRDB

0 commit comments

Comments
 (0)