Page 73 - MDP2022-3
P. 73
context)
.subtitle2
.override(
fontFamily:
'noto',
color: Colors
.white,
useGoogleFonts:
false,
),
elevation: 3,
borderSide: BorderSide(
color:
Colors.transparent,
width: 1,
),
borderRadius:
BorderRadius.circular(
40),
),
),
),
Padding(
padding: EdgeInsetsDirectional
.fromSTEB(0, 20, 0, 24),
child: FFButtonWidget(
onPressed: () async {
final user =
await signInAnonymously(
context);
if (user == null) {
return;
}
await Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
CompleteProfileWidget(),
),
);
},
text: '가입하지 않고 계속하기',
options: FFButtonOptions(
width: 230,