본문 바로가기

AppDevelopment15

Flutter 플러터 애플리케이션이 전면에 있는지 아닌지를 확인하는 방법은 무엇인가요?, How do I check if the Flutter application is in the foreground or not? 질문 I don't want to show notification when the app is in foreground. How can I check live state of my app? 답변 당신의 State 클래스에서는 WidgetsBindingObserver 인터페이스를 구현하고 위젯 상태 변경을 듣도록해야합니다. 다음과 같이: class _MyHomePageState extends State with WidgetsBindingObserver { AppLifecycleState? _notification; @override void didChangeAppLifecycleState(AppLifecycleState state) { setState(() { _notification = state; }).. 2023. 6. 23.
Flutter 플러터: 새 프로젝트를 만드는 방법, Flutter: How to create a new project 질문 Flutter SDK를 설치하려면 macOS에 설치하기 - iOS 설정 링크에서 제공하는 단계를 따르세요. 하지만 Xcode에서 새 샘플 프로젝트를 만들 수 없습니다. Xcode를 사용하여 새 프로젝트를 시작하는 적절한 방법을 찾을 수 없습니다. 새 샘플 프로젝트를 시작하는 방법은 다음과 같지만 Xcode용이 아닙니다: 시작하기: 테스트 드라이브 Xcode에서 새 Flutter 프로젝트를 만드는 방법은 무엇인가요? 저는 Xcode 9.3 - beta 3를 사용하고 있습니다. 답변 나는 명령 줄을 통해 Flutter 프로젝트를 생성하는 것이 더 나은 방법이라고 생각합니다. flutter create --org com.yourdomain your_app_name 이 명령은 간단한 카운터 앱을 생성합니다.. 2023. 6. 23.
Flutter 플러터에서 BottomNavigationBar 스타일, Style BottomNavigationBar in Flutter 질문 저는 Flutter를 시도하고 있으며 앱의 BottomNavigationBar 색상을 변경하려고합니다. 그러나 제가 달성한 것은 BottomNavigationItem (아이콘 및 텍스트)의 색상을 변경하는 것뿐입니다. 여기에서 내 BottomNavigationBar을 선언하는 곳입니다: class _BottomNavigationState extends State{ @override Widget build(BuildContext context) { return new Scaffold( appBar: null, body: pages(), bottomNavigationBar:new BottomNavigationBar( items: [ new BottomNavigationBarItem( icon: cons.. 2023. 6. 23.
Flutter 플러터 내비게이션 인덱스 1로 팝하기, Flutter Navigation pop to index 1 질문 저는 네비게이터에 재귀적으로 라우트를 추가하고 있습니다. 20개 이상의 뷰가 있을 수 있습니다. 팝은 광고대로 작동하지만, 인덱스 1로 팝하고 모든 푸시 기록을 제거하려면 어떻게 해야 할까요? 이 팝 명령을 returntoIndex0과 같은 것으로 대체할 방법이 있을까요... new ListTile( title: new RaisedButton( child: new Text("POP"), onPressed: () { var route = new MaterialPageRoute( builder: (BuildContext context) => new NextPage3(value:"hi there from 3"), ); Navigator.pop(context); }, ), ), 답변 이름이 지정된 경로를 .. 2023. 6. 14.