개발자의 공부방/모바일
-
class _MarketOrderBookState extends State { final _isSelected = [true, false, false]; } child: ToggleButtons( constraints: BoxConstraints.expand( width: (constraints.maxWidth - 4) / 3), color: Color(0xff8d8d8d), fillColor: Color(0xff4063ae), selectedColor: Color(0xffffffff), children: [ Wrap( children: [ Padding( padding: const EdgeInsets.only(right: 2.0), child: Icon( Icons.monetization_on, siz..
Flutter] ToggleButtons으로 선택 버튼 구현하기class _MarketOrderBookState extends State { final _isSelected = [true, false, false]; } child: ToggleButtons( constraints: BoxConstraints.expand( width: (constraints.maxWidth - 4) / 3), color: Color(0xff8d8d8d), fillColor: Color(0xff4063ae), selectedColor: Color(0xffffffff), children: [ Wrap( children: [ Padding( padding: const EdgeInsets.only(right: 2.0), child: Icon( Icons.monetization_on, siz..
2022.03.15 -
child: FloatingActionButton( backgroundColor: Color(0xfff8f8f8), elevation: 0, onPressed: () {}, child: Icon( Icons.minimize_outlined, color: Color(0xff828282), ), ), elevation: 0, hoverElevation: 0, focusElevation: 0, highlightElevation: 0, elevation 옵션을 0으로 하면 플로팅버튼에서 그림자가 삭제된다.
Flutter] FloatingActionButton에서 그림자 제거child: FloatingActionButton( backgroundColor: Color(0xfff8f8f8), elevation: 0, onPressed: () {}, child: Icon( Icons.minimize_outlined, color: Color(0xff828282), ), ), elevation: 0, hoverElevation: 0, focusElevation: 0, highlightElevation: 0, elevation 옵션을 0으로 하면 플로팅버튼에서 그림자가 삭제된다.
2022.03.14 -
Flutter 토이프로젝트를 노트북에서 실행하려고 하면 계속 AVD는 무시하고 크롬으로 띄우는 경우가 생겼다 -,-... 별짓거리를 다 하다가 결국 방법을 찾아냈다. 아래와 같이 터미널에서 입력해보자. flutter config --no-enable-web 그럼 크롬으로 띄워지는 문제가 사라질 것 이다.. 다만 flutter의 프로젝트가 web이라면 --enable-web 으로 변경해줘야한다. 후... 크롬으로 안띄우는건 됐으나 에뮬레이터가 연동이 또 안된다 -,-... 그지같다... 출처 : https://stackoverflow.com/questions/58463079/how-can-i-disable-web-support-in-flutter How can I disable web support in ..
Flutter] flutter 프로젝트 실행 크롬으로 뜨는 문제Flutter 토이프로젝트를 노트북에서 실행하려고 하면 계속 AVD는 무시하고 크롬으로 띄우는 경우가 생겼다 -,-... 별짓거리를 다 하다가 결국 방법을 찾아냈다. 아래와 같이 터미널에서 입력해보자. flutter config --no-enable-web 그럼 크롬으로 띄워지는 문제가 사라질 것 이다.. 다만 flutter의 프로젝트가 web이라면 --enable-web 으로 변경해줘야한다. 후... 크롬으로 안띄우는건 됐으나 에뮬레이터가 연동이 또 안된다 -,-... 그지같다... 출처 : https://stackoverflow.com/questions/58463079/how-can-i-disable-web-support-in-flutter How can I disable web support in ..
2022.02.01 -
MainAxisAlignment Column는 시작점이 왼쪽 상단이 주축이다. 부모 위젯을 아무것도 두지 않은 상태에서 Column의 MainAxisAlignment.start를 하면 레이아웃은 아무것도 변하지 않는다. class _MyHomePageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Column( mainAxisAlignment: MainAxisAlignment.start, children: [ Container( width: 50.0, height: 50.0, // margin: EdgeIns..
Flutter] 기본 레이아웃 이해MainAxisAlignment Column는 시작점이 왼쪽 상단이 주축이다. 부모 위젯을 아무것도 두지 않은 상태에서 Column의 MainAxisAlignment.start를 하면 레이아웃은 아무것도 변하지 않는다. class _MyHomePageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Column( mainAxisAlignment: MainAxisAlignment.start, children: [ Container( width: 50.0, height: 50.0, // margin: EdgeIns..
2022.01.25 -
onBackAction = () => { this.moveScreen('Settings'); } ... { if(emailState === KYC_STATE_DONE && selfState === KYC_STATE_DONE && additionalState === '2') { // navigation.navigate('ConfirmRegistration') navigation.navigate('ConfirmAppPin', { pinProps: { description: i18n.t('Pincode:confirm'), // biomatrics: false }, cb: async () => { navigation.navigate('ConfirmRegistration', { action: this.onBack..
RN] react-navigation의 navigate의 action을 이용해 이동하자.onBackAction = () => { this.moveScreen('Settings'); } ... { if(emailState === KYC_STATE_DONE && selfState === KYC_STATE_DONE && additionalState === '2') { // navigation.navigate('ConfirmRegistration') navigation.navigate('ConfirmAppPin', { pinProps: { description: i18n.t('Pincode:confirm'), // biomatrics: false }, cb: async () => { navigation.navigate('ConfirmRegistration', { action: this.onBack..
2022.01.14