Skip to content

Commit

Permalink
feat: 문장 API 연동
Browse files Browse the repository at this point in the history
  • Loading branch information
bunju20 committed Feb 21, 2024
1 parent 0850c38 commit 9ae8e1c
Show file tree
Hide file tree
Showing 3 changed files with 399 additions and 126 deletions.
1 change: 1 addition & 0 deletions lib/views/home/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class HomeScreen extends BaseScreen<HomeViewModel> {
return SingleChildScrollView(
child: Column(
children: [
const SizedBox(height: 15),
HomeHeaderWidget(isLoggedIn: isLoggedIn, vm: viewModel),
_Top(
isLoggedIn: isLoggedIn,
Expand Down
4 changes: 3 additions & 1 deletion lib/views/study/date_study_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,13 @@ class DateStudyScreen extends StatelessWidget {
title: Container(
alignment: Alignment.center,
child: Text(
session.text,
session.text.length > 13 ? '${session.text.substring(0, 13)}...' : session.text,
style: const TextStyle(
fontSize: 24.0,
fontWeight: FontWeight.bold,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
onTap: () {
Expand Down
Loading

0 comments on commit 9ae8e1c

Please sign in to comment.