fix fastPass
This commit is contained in:
parent
342d6b32b9
commit
f33b223508
File diff suppressed because one or more lines are too long
|
@ -136,7 +136,8 @@ GoRouter createRouter(AppStateNotifier appStateNotifier) => GoRouter(
|
|||
FFRoute(
|
||||
name: 'scheduleProvisionalVisitPage',
|
||||
path: '/scheduleProvisionalVisitPage',
|
||||
builder: (context, params) => const ScheduleProvisionalVisitPageWidget(),
|
||||
builder: (context, params) =>
|
||||
const ScheduleProvisionalVisitPageWidget(),
|
||||
),
|
||||
FFRoute(
|
||||
name: 'onBoardingPage',
|
||||
|
@ -146,7 +147,7 @@ GoRouter createRouter(AppStateNotifier appStateNotifier) => GoRouter(
|
|||
FFRoute(
|
||||
name: 'fastPassPage',
|
||||
path: '/fastPassPage',
|
||||
builder: (context, params) => const FastPassPageWidget(),
|
||||
builder: (context, params) => /*const*/ FastPassPageWidget(),
|
||||
),
|
||||
FFRoute(
|
||||
name: 'test',
|
||||
|
@ -322,7 +323,8 @@ class TransitionInfo {
|
|||
final Duration duration;
|
||||
final Alignment? alignment;
|
||||
|
||||
static TransitionInfo appDefault() => const TransitionInfo(hasTransition: false);
|
||||
static TransitionInfo appDefault() =>
|
||||
const TransitionInfo(hasTransition: false);
|
||||
}
|
||||
|
||||
class RootPageContext {
|
||||
|
|
|
@ -7,7 +7,7 @@ import '/flutter_flow/flutter_flow_util.dart';
|
|||
|
||||
class FastPassPageWidget extends StatefulWidget {
|
||||
final String freToken = FFAppState().userUUID;
|
||||
final String freUserData = "{\"name\": \"${FFAppState()}\", " +
|
||||
final String freUserData = "{\"name\": \"${FFAppState().name}\", " +
|
||||
"\"email\": \"${FFAppState().email}\"," +
|
||||
"\"dev_id\": \"${FFAppState().devUUID}\"," +
|
||||
"\"created_at\": \"${FFAppState().createdAt}\"," +
|
||||
|
|
Loading…
Reference in New Issue