Compare commits

...

2 Commits

Author SHA1 Message Date
Shadowfacts 372b6c3d80 Better match n-gate style 2024-04-18 22:50:33 -04:00
Shadowfacts 684ce0b47c Fix typos 2024-04-18 22:36:59 -04:00
3 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ An annotated digest of the top "Hacker" "News" posts for the second week of Augu
}
h3, h4 {
font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', 'VGA' !important;
font-variant: small-caps;
margin-bottom: 0;
}
h4 {

View File

@ -8,7 +8,7 @@ slug = "liveviewnative"
I'm very excited for the project I've been working on all year to finally be public. [LiveView Native](https://native.live) is a library that lets you build native apps backed by [Phoenix LiveView](https://github.com/phoenixframework/phoenix_live_view). I've been developing the [iOS client](https://github.com/liveviewnative/liveview-client-swiftui) which is backed by SwiftUI.
Using LiveView Native lets avoid duplicating business logic on the frontend and save time on implementing dedicated APIs for native apps. The iOS client can be integrated into any existing app by using a single SwiftUI view, so it's easy to adopt it for just a single screen at a time.
Using LiveView Native lets you avoid duplicating business logic on the frontend and save time on implementing dedicated APIs for native apps. The iOS client can be integrated into any existing app by using a single SwiftUI view, so it's easy to adopt it for just a single screen at a time.
You can find the documentation[^1] for the Swift package [here](https://liveviewnative.github.io/liveview-client-swiftui/documentation/liveviewnative/), including a step-by-step [tutorial](https://liveviewnative.github.io/liveview-client-swiftui/tutorials/yourfirstapp) which walks you through building a complete app with LiveView Native.

View File

@ -133,7 +133,7 @@ async function registerWebAuthnAccount(form) {
// ...
user: {
id: generateUserID(),
name: form["user[email"].value,
name: form["user[email]"].value,
displayName: "",
},
},