Skip to content

Commit

Permalink
Swap client id and endpoint fields
Browse files Browse the repository at this point in the history
  • Loading branch information
IniZio committed Apr 18, 2024
1 parent 7fe0b69 commit 64646d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -303,18 +303,18 @@ class _MyAppState extends State<MyApp> {
padding:
const EdgeInsets.symmetric(vertical: 8, horizontal: 16),
child: TextFieldWithLabel(
label: "Endpoint",
hintText: "Enter Authegar endpoint",
controller: _endpointController,
label: "Client ID",
hintText: "Enter client ID",
controller: _clientIDController,
),
),
Container(
padding:
const EdgeInsets.symmetric(vertical: 8, horizontal: 16),
child: TextFieldWithLabel(
label: "Client ID",
hintText: "Enter client ID",
controller: _clientIDController,
label: "Endpoint",
hintText: "Enter Authegar endpoint",
controller: _endpointController,
),
),
RadioGroup<AuthenticationPage>(
Expand Down

0 comments on commit 64646d4

Please sign in to comment.