-
Notifications
You must be signed in to change notification settings - Fork 0
feat: light background 및 color 추가 #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| import 'package:flutter/material.dart'; | ||
| import 'package:ongi/core/app_colors.dart'; | ||
|
|
||
| class AppLightBackground extends StatelessWidget { | ||
| final Widget child; | ||
| const AppLightBackground({super.key, required this.child}); | ||
|
|
||
| @override | ||
| Widget build(BuildContext context) { | ||
| return Stack( | ||
| children: [ | ||
| Container( | ||
| color: AppColors.ongiLigntgrey, | ||
| ), | ||
| Positioned( | ||
| right: -140, | ||
| top: -160, | ||
| child: Opacity( | ||
| opacity: 0.3, | ||
| child: Image.asset( | ||
| 'assets/images/logo.png', | ||
| width: 350, | ||
| fit: BoxFit.contain, | ||
| ), | ||
| ), | ||
| ), | ||
| Positioned.fill(child: child), | ||
| ], | ||
| ); | ||
| } | ||
| } |
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
타이포 및 네이밍 컨벤션 불일치
ongiLigntgrey는Light의 오타이며, 기존 패턴(카멜-케이스)과도 맞지 않습니다. 추후 사용 시 혼동을 유발하니 즉시 수정하는 편이 좋습니다.수정 후, 해당 상수를 참조하는 모든 위치(특히
AppLightBackground)도 함께 업데이트하세요.🏁 Script executed:
Length of output: 484
Typo 및 네이밍 컨벤션 수정 필요
ongiLigntgrey는Light의 철자 오류이며, 카멜케이스 패턴(ongiLightGrey)에도 맞지 않습니다. 아래 파일들을 함께 고쳐주세요.• frontend/ongi/lib/core/app_colors.dart (6행)
• frontend/ongi/lib/core/app_light_background.dart (13행)
위 두 군데를 수정한 뒤, 관련 레퍼런스가 없는지 한 번 더 확인 부탁드립니다.
📝 Committable suggestion
🤖 Prompt for AI Agents