Skip to content

Commit 70e7109

Browse files
Merge pull request #46 from gabrielpatricksouza/aad_b2c_v2
AAD B2C Webview V2
2 parents c5a090a + 95b11b4 commit 70e7109

File tree

273 files changed

+6453
-2026
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+6453
-2026
lines changed

AZURE_AD_B2C_Embedded_Webview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Widget build(BuildContext context) {
241241
// When navigating to the "/" route, build the Create Account widget.
242242
243243
'/': (context) =>
244-
const ADB2CEmbedWebView(
244+
const AADB2CEmbedWebView(
245245
url: '<user_flow_endpoint>',
246246
clientId: '<client_id_of_user_flow>',
247247
redirectUrl: '<redirect_uri_of_user_flow>',
@@ -252,7 +252,7 @@ Widget build(BuildContext context) {
252252
);
253253
}
254254
```
255-
## Parameters Used In ADB2CEmbedWebView
255+
## Parameters Used In AADB2CEmbedWebView
256256

257257
* url: This is the user flow/policy endpoint
258258

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.0] - 2025-01-02
9+
- Bugs fixed
10+
- Added Webview Interaction
11+
- Added Flutter UI Customization
12+
- Added Dynamic Flutter Layout
13+
- Added new Code Structure
14+
- Updated Login Button
15+
- Updated README.md
16+
- Updated CHANGELOG.md
17+
- Updated pubspec.yaml
18+
819
## [0.0.57] - 2024-08-21
920
UI/UX improvements on token retrieval page by exposing the loadingReplacement widget for AADLoginButton.
1021

@@ -64,7 +75,7 @@ Added new model class that map responses from Azure: AzureTokenResponse
6475

6576
Added a new model class that tracks down in a better way a token, instead of plan text and Obj called: Token, wich really comes handy when handling refresh tokens due to users need to know not only the token but also its expiration date.
6677

67-
Fixed refresh tokens not being retrieved on AADLoginButton and ADB2CEmbedWebView onRefreshToken callback
78+
Fixed refresh tokens not being retrieved on AADLoginButton and AADB2CEmbedWebView onRefreshToken callback
6879

6980
Added a new callback method called: onAnyTokenRetrieved, this method could be used instead of all the others
7081

0 commit comments

Comments
 (0)