Skip to content

Commit 0bd892b

Browse files
authored
chore: publish v0.4.3 (#77)
1 parent 076e26e commit 0bd892b

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.4.3
2+
3+
- feat: Add localization / text customization support for all components.
4+
```dart
5+
// Use the `localization` parameter to customize the text of the UI components.
6+
SupaEmailAuth(
7+
localization: const SupaEmailAuthLocalization(
8+
enterEmail: 'What\'s your email?',
9+
enterPassword: 'Enter your password',
10+
),
11+
onSignInComplete: _onSignInComplete,
12+
onSignUpComplete: _onSignUpComplete,
13+
),
14+
```
15+
116
## 0.4.2
217

318
- feat: Add `nativeGoogleAuthConfig` and `enableNativeAppleAuth` parameter to `SupaSocialsAuth` to support native Google and Apple auth.

pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: supabase_auth_ui
22
description: UI library to implement auth forms using Supabase and Flutter
3-
version: 0.4.2
3+
version: 0.4.3
44
homepage: https://supabase.com
5-
repository: "https://github.com/supabase-community/flutter-auth-ui"
5+
repository: 'https://github.com/supabase-community/flutter-auth-ui'
66

77
environment:
8-
sdk: ">=3.0.0 <4.0.0"
9-
flutter: ">=3.0.0"
8+
sdk: '>=3.0.0 <4.0.0'
9+
flutter: '>=3.0.0'
1010

1111
dependencies:
1212
flutter:

0 commit comments

Comments
 (0)