diff --git a/lib/viewModels/chatting/chatting_viewmodel.dart b/lib/viewModels/chatting/chatting_viewmodel.dart index a70871b..38b8d30 100644 --- a/lib/viewModels/chatting/chatting_viewmodel.dart +++ b/lib/viewModels/chatting/chatting_viewmodel.dart @@ -218,9 +218,9 @@ class ChattingViewModel extends GetxController { } else { print("질문 리스트 사용, 질문 index = $currentPredefinedQuestionIndex"); // 미리 정의된 질문 사용 - //! 사전 생성 질문 개수 10개로 줄인 부분. 개수 조정 가능 - // if (currentPredefinedQuestionIndex + 1 < predefinedQuestions.length) { - if (currentPredefinedQuestionIndex + 1 < 2) { + // ! 사전 생성 질문 개수 10개로 줄인 부분. 개수 조정 가능 + if (currentPredefinedQuestionIndex + 1 < predefinedQuestions.length) { + // if (currentPredefinedQuestionIndex + 1 < 2) { currentPredefinedQuestionIndex++; nextQuestion = predefinedQuestions[currentPredefinedQuestionIndex]; additionalQuestionCount = 0; diff --git a/lib/views/chatting/chatting_screen.dart b/lib/views/chatting/chatting_screen.dart index dd4b856..b5acf7c 100644 --- a/lib/views/chatting/chatting_screen.dart +++ b/lib/views/chatting/chatting_screen.dart @@ -70,7 +70,7 @@ class ChattingScreen extends BaseScreen { // width: 40, // height: 40, // decoration: BoxDecoration( - // color: ColorSystem.mainBlue, + // color: ColorSystem.white, // shape: BoxShape.circle, // boxShadow: [ // BoxShadow( @@ -84,6 +84,7 @@ class ChattingScreen extends BaseScreen { // child: CupertinoButton( // onPressed: () => viewModel.sendDummyPrompt(), // padding: EdgeInsets.zero, + // // child: Container(width: 20, height: 20, color: Colors.white), // child: const Icon( // CupertinoIcons.add, // color: ColorSystem.white,