FlutterFramework2 Flutter 미래 빌더에서 여러 가지 방법을 사용할 수 있을까요?, Can I use multiple method on a future builder? 질문 @override Widget build(BuildContext context) { widget.groupid; widget.event_id; var futureBuilder = new FutureBuilder( future: _getAllTickets(), builder: (BuildContext context, AsyncSnapshot snapshot) { print(snapshot.connectionState); switch (snapshot.connectionState) { case ConnectionState.none: case ConnectionState.waiting: return new Text('...'); default: if (snapshot.hasError) return new.. 2023. 12. 18. Flutter 플러터에서의 측정 단위는 무엇인가요?, What is unit of measurement in flutter 질문 보통 안드로이드에서는 dp를 사용하고, 아이폰에서는 pt(포인트)를 사용하여 측정합니다. 1 pt = 1/72 인치 1 dp = 1/160 인치 하지만 플러터에서는 측정 단위가 무엇인지 모르겠습니다. 예시: SizedBox(height: 16.0) 또는 TextStyle(fontSize: 23.0) 이것은 단순히 숫자이며, 1.0에 해당하는 dp나 pt는 얼마인가요? 어떻게 계산되나요? 답변 From https://docs.flutter.io/flutter/dart-ui/Window/devicePixelRatio.html : The number of device pixels for each logical pixel. This number might not be a power of two. Indee.. 2023. 9. 28. 이전 1 다음