forked from kookmin-sw/cap-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fe feature/#42 book info UI
- Loading branch information
Showing
25 changed files
with
375 additions
and
29 deletions.
There are no files selected for viewing
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
frontend/.dart_tool/flutter_build/f53bae067f9785b129dd4b9b5597f59d/.filecache
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
-654 KB
(98%)
frontend/.dart_tool/flutter_build/f53bae067f9785b129dd4b9b5597f59d/app.dill
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
frontend/.dart_tool/flutter_build/f53bae067f9785b129dd4b9b5597f59d/kernel_snapshot.d
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
frontend/.dart_tool/flutter_build/f53bae067f9785b129dd4b9b5597f59d/kernel_snapshot.stamp
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
-654 KB
(98%)
frontend/build/f4da31578bf74e160393d588ebd02ee2.cache.dill.track.dill
Binary file not shown.
Binary file not shown.
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
Binary file modified
BIN
-654 KB
(98%)
frontend/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/kernel_blob.bin
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
frontend/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App
Binary file not shown.
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
Binary file modified
BIN
-654 KB
(98%)
.../Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin
Binary file not shown.
Binary file not shown.
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
Binary file modified
BIN
+0 Bytes
(100%)
frontend/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/App
Binary file not shown.
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
Binary file modified
BIN
-654 KB
(98%)
...ld/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import 'package:http/http.dart' as http; | ||
import 'dart:convert'; | ||
|
||
|
||
|
||
|
||
// Future<String> sendData() async { | ||
// //http.post는 리턴값이 Future이기 떄문에 async 함수 내에서 await로 호출할 수 있다. | ||
// var test = Uri.parse(); | ||
// http.Response res = await http.get( | ||
// test, | ||
// headers: {"Content-Type":"application/json", | ||
// 'Authorization': 'Bearer $token' | ||
// }, | ||
// // body: json.encode({ | ||
// // "email" : "[email protected]", | ||
|
||
// // }) | ||
// ); | ||
// final data = json.decode(utf8.decode(res.bodyBytes)); | ||
// final comment = data['body']; | ||
// print(comment); | ||
// // print(res.body); | ||
// //여기서는 응답이 객체로 변환된 res 변수를 사용할 수 있다. | ||
// //여기서 res.body를 jsonDecode 함수로 객체로 만들어서 데이터를 처리할 수 있다. | ||
|
||
// return res.body; //작업이 끝났기 때문에 리턴 | ||
// } |
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
Oops, something went wrong.