-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
218 additions
and
69 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -27,4 +27,4 @@ subprojects { | |
|
||
tasks.register("clean", Delete) { | ||
delete rootProject.buildDir | ||
} | ||
} |
This file contains 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 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 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 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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_svg/flutter_svg.dart'; | ||
import 'package:outfoot/colors/colors.dart'; | ||
import 'package:outfoot/services/data/editprofile_data.dart'; | ||
import 'package:outfoot/widgets/dashed_line_painter.dart'; | ||
|
||
class EditProfile extends StatelessWidget { | ||
const EditProfile({super.key}); | ||
EditProfile({super.key}); | ||
|
||
TextStyle _textStyle(double fontSize, FontWeight fontWeight, Color color, | ||
double letterSpacing) { | ||
|
@@ -27,6 +28,8 @@ class EditProfile extends StatelessWidget { | |
); | ||
} | ||
|
||
final Data = EditprofileData("정지원", "안녕하세요 만나서 반가워요", "[email protected]"); | ||
|
||
Widget _svgIcon(String assetName, | ||
{double? width, double? height, BoxFit fit = BoxFit.none}) { | ||
return SvgPicture.asset( | ||
|
@@ -78,7 +81,7 @@ class EditProfile extends StatelessWidget { | |
alignment: Alignment.center, | ||
children: [ | ||
Text( | ||
'문', | ||
(Data.name)[0], | ||
style: _textStyle( | ||
24.0, FontWeight.bold, Colors.white, 0.0), | ||
), | ||
|
@@ -109,7 +112,7 @@ class EditProfile extends StatelessWidget { | |
top: 78.0, | ||
left: 159.0, | ||
child: Text( | ||
'문서영', | ||
Data.name, | ||
style: _textStyle( | ||
16.0, FontWeight.w500, greyColor1, -0.32), | ||
), | ||
|
@@ -147,7 +150,7 @@ class EditProfile extends StatelessWidget { | |
top: 264.0, | ||
right: 42.0, | ||
child: Text( | ||
'19/20', | ||
' ', | ||
style: _textStyle(11, FontWeight.w400, mainBrownColor, -0.22), | ||
), | ||
), | ||
|
Oops, something went wrong.