Skip to content
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

๐Ÿ”€ :: ๋ฐ˜์‘ํ˜• ๋ ˆ์ด์•„์›ƒ ๋งŒ๋“ค๊ธฐ #187 #236

Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
4225442
feat :: ์•ˆ๋‚ด๋ฌธ๊ตฌ Column Fittbox wrapping
Yoochanhong Apr 25, 2024
44176ca
feat :: ๋ฐ”ํ…€์‹œํŠธ ํ…์ŠคํŠธ fittedBox wrapping
Yoochanhong Apr 25, 2024
fe4d006
feat :: ๋™์ž‘ ์ƒํƒœ ์•„์ด์ฝ˜ ์ œ๊ฑฐ, ๋ ˆ์ด์•„์›ƒ ๊ตฌ์กฐ ๋ณ€๊ฒฝ
Yoochanhong Apr 25, 2024
28c0a4a
feat :: ๋ทฐ ์œ„์ ฏ ๋ณ„ ๋ถ„๋ฆฌ
Yoochanhong Apr 25, 2024
57bf0a5
feat :: ๋ฐ”ํ…€์‹œํŠธ ๋ฐ˜์‘ํ˜• ๋””์ž์ธ ์ ์šฉ
Yoochanhong Apr 25, 2024
5ab08c6
feat :: ๊ฐ€๋กœ๊ธธ์ด ์ตœ๋Œ€ํ•œ ์ฐจ์ง€ํ•˜๋„๋ก ๋””์ž์ธ ์ˆ˜์ •
Yoochanhong Apr 25, 2024
e69802e
feat :: ํ…์ŠคํŠธ ํฌ๊ธฐ ๊ณ ์ •
Yoochanhong Apr 25, 2024
db679d9
feat :: ํŽ˜์ด์ง€ ์ด๋ฆ„ ๊ฐ€์šด๋ฐ๋กœ ์˜ฎ๊ธฐ๊ธฐ
Yoochanhong Apr 25, 2024
a852236
feat :: ๋นˆ ์ปจํ…Œ์ด๋„ˆ ์ฑ„์šฐ๊ธฐ
Yoochanhong Apr 25, 2024
9e4ab1f
feat :: osj ํ…์ŠคํŠธ ๋ฒ„ํŠผ ๊ธฐ๋ณธํŒจ๋”ฉ ์ œ๊ฑฐ
Yoochanhong Apr 25, 2024
60820c0
feat :: ๋ฐ”ํ…€์‹œํŠธ ํฌ๊ธฐ ์ œํ•œ ํ•ด์ œ
Yoochanhong Apr 25, 2024
64cc356
feat :: ์„ธํƒ์‹ค chips ํŒจ๋”ฉ ์ถ”๊ฐ€
Yoochanhong Apr 25, 2024
3a93eaf
remove :: status ๋ฒ„ํŠผ ์‚ญ์ œ
Yoochanhong Apr 26, 2024
431fca8
feat :: machine card ๋””์ž์ธ ์ˆ˜์ •
Yoochanhong Apr 26, 2024
511a457
feat :: ํ…์ŠคํŠธ ๊นจ์ง ๋ฐฉ์ง€ FittedBox ์ถ”๊ฐ€
Yoochanhong Apr 26, 2024
b89d192
feat :: ์„ค์ • ํŽ˜์ด์ง€ leading ์ œ์•ฝ์กฐ๊ฑด ํ•ด์ œ
Yoochanhong Apr 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat :: osj ํ…์ŠคํŠธ ๋ฒ„ํŠผ ๊ธฐ๋ณธํŒจ๋”ฉ ์ œ๊ฑฐ
Yoochanhong committed Apr 25, 2024
commit 9e4ab1fb84abbd18b53f106a2b34d5bcc99052bb
6 changes: 4 additions & 2 deletions lib/presentation/utils/osj_text_button.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';

class OSJTextButton extends StatelessWidget {
const OSJTextButton(
@@ -11,13 +11,15 @@ class OSJTextButton extends StatelessWidget {
this.width,
this.height,
this.function,
this.padding = EdgeInsets.zero,
this.radius = 16.0});

final double? width, height;
final double fontSize, radius;
final Color color, fontColor;
final String text;
final VoidCallback? function;
final EdgeInsets padding;

@override
Widget build(BuildContext context) {
@@ -26,7 +28,7 @@ class OSJTextButton extends StatelessWidget {
child: Container(
width: width,
height: height,
padding: EdgeInsets.symmetric(horizontal: 5.0.r),
padding: padding,
decoration: BoxDecoration(
color: color,
borderRadius: BorderRadius.circular(radius),