On the keto diet, it is recommended to avoid certain foods that are high in carbohydrates. Here are some examples of foods to avoid
On the keto diet, it is recommended to avoid certain foods that are high in carbohydrates. Here are some examples of foods to avoid: Grains and starches: This includes wheat, rice, corn, oats, and products made from them such as bread, pasta, cereal, and tortillas. Sugary foods: Avoid sugar in all forms, including table sugar, honey, agave syrup, and maple syrup. Also, avoid sweetened beverages,..
2023. 7. 6.
Flutter 입력 관련 위젯
글자, 체크박스, 스위치, 라디오, 드롭다운 등 여러가지 입력에 대한 위젯을 정리해보자. 요약 : TextField, CheckBox, Switch, Radio/RidioListTile, DropDownButton, TextEditingController, Form, TextFormField TextField return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Column( children: [ Spacer(), TextField(), // 그냥 밑줄 Spacer(), TextField( decoration: InputDecoration( labelText: 'Input Text' // 입력 힌트 ), ), Spacer(), Text..
2021. 8. 23.
Flutter 크기/위치/정렬 관련 위젯
화면을 구성한 위젯의 크기, 위치, 정렬 등을 할 때 쓰이는 위젯에 대해 알아보자. 요약 : Center, Expanded, SizedBox, Card Center return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Center( child: Container( color: Colors.blue, width: 200, height: 200 ) ) ); Expanded return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Column( children: [ Expanded( flex: 3, // 비율 child: Container( color: Colors.pinkA..
2021. 8. 23.