@@ -319,7 +319,7 @@ class PostContent extends StatelessWidget {
319319 ],
320320 ),
321321 Text (
322- DateFormat ('M월 d일' ). add_jm ( ).format (post.createdTime),
322+ DateFormat ('M월 d일 HH:mm' ).format (post.createdTime),
323323 style: const TextStyle (
324324 color: AppColor .textColor,
325325 fontWeight: FontWeight .normal,
@@ -355,8 +355,10 @@ class PostContent extends StatelessWidget {
355355 ),
356356 SelectableLinkify (
357357 onOpen: (link) async {
358- if (! await launchUrl (Uri .parse (link.url))) {
359- snackBar (title: "해당 링크로 이동하지 못했습니다" , content: "잠시 후 다시 시도해 주세요" );
358+ if (! await launchUrl (Uri .parse (link.url))) {
359+ snackBar (
360+ title: "해당 링크로 이동하지 못했습니다" ,
361+ content: "잠시 후 다시 시도해 주세요" );
360362 }
361363 },
362364 text: post.content,
@@ -365,10 +367,10 @@ class PostContent extends StatelessWidget {
365367 fontWeight: FontWeight .normal,
366368 fontSize: 15 ,
367369 ),
368- linkStyle: const TextStyle (
369- decorationColor: AppColor .hyperLink
370- ) ,
371- contextMenuBuilder : ( BuildContext context, EditableTextState editableTextState) {
370+ linkStyle:
371+ const TextStyle ( decorationColor: AppColor .hyperLink),
372+ contextMenuBuilder : ( BuildContext context ,
373+ EditableTextState editableTextState) {
372374 return AdaptiveTextSelectionToolbar .editableText (
373375 editableTextState: editableTextState,
374376 );
0 commit comments