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
{ | |
"collectionChartDataList": [ | |
{ | |
"collectionName": "collection1", | |
"collectionSalePrice": [ | |
{ | |
"price": 58.25, | |
"cvtDatetime": "2023-03-26T08:00:00" | |
}, | |
{ |
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
@Composable | |
fun BookPageFlip() { | |
var offsetX by remember { mutableStateOf(0f) } | |
var currentPage by remember { mutableStateOf(0) } | |
val animatedOffset = animateFloatAsState( | |
targetValue = offsetX, | |
animationSpec = spring( | |
dampingRatio = 0.8f, | |
stiffness = Spring.StiffnessLow |
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
/** | |
* 주식 가격 모니터링 시스템을 구현하시오. | |
* | |
* 요구사항: | |
* 1. 여러 주식의 가격을 동시에 모니터링 (병렬처리) | |
* 2. 가격이 특정 임계값을 넘으면 알림 발생 | |
* 3. 1초마다 가격 업데이트 | |
* 4. 거래시간(9:00-15:30)에만 동작 | |
* 5. 에러 발생시 재시도 (최대 3회) | |
*/ |
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
{ | |
"count": 222, | |
"stores": [ | |
{ | |
"addr": "서울특별시 강북구 솔매로 38 (미아동)", | |
"code": "11817488", | |
"created_at": "2020/07/03 11:00:00", | |
"lat": 37.6254369, | |
"lng": 127.0164096, | |
"name": "승약국", |
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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
ChangeNotifierProvider<MyViewModel>( | |
value: MyViewModel(), | |
child: const MyApp(), | |
), | |
); | |
} |
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
Show hidden characters
{ | |
"Generate class for new model": { | |
"prefix": "dataclass", | |
"scope": "dart", | |
"body": [ | |
"import 'package:freezed_annotation/freezed_annotation.dart';", | |
"", | |
"part '${1/(^[A-Z][a-z]*|[a-z])([A-Z])?/${1:/downcase}${2:+_}${2:/downcase}/g}.freezed.dart';", | |
"", |
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
package controller; | |
import java.io.IOException; | |
import dto.Product; | |
import jakarta.servlet.ServletException; | |
import jakarta.servlet.annotation.WebServlet; | |
import jakarta.servlet.http.HttpServlet; | |
import jakarta.servlet.http.HttpServletRequest; | |
import jakarta.servlet.http.HttpServletResponse; |
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
{ | |
"count": 222, | |
"stores": [ | |
{ | |
"addr": "서울특별시 강북구 솔매로 38 (미아동)", | |
"code": "11817488", | |
"created_at": "2020/07/03 11:00:00", | |
"lat": 37.6254369, | |
"lng": 127.0164096, | |
"name": "승약국", |
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
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:google_maps_flutter/google_maps_flutter.dart'; | |
class MapPage extends StatefulWidget { | |
@override | |
State<MapPage> createState() => MapPageState(); | |
} |
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
import 'package:flutter/material.dart'; | |
class UploadPage extends StatefulWidget { | |
@override | |
_UploadPageState createState() => _UploadPageState(); | |
} | |
class _UploadPageState extends State<UploadPage> { |
NewerOlder