본문 바로가기
반응형

변경6

[Flutter][Android][iOS] 출시 앱 이름 변경 방법 (How to change the launch app name) 출시 앱 이름 변경 방법 (How to change the launch app name) [Flutter][Android][iOS] 플러터로 개발하는 경우, 안드로이드 네이티브 파일과 iOS 네이티브 파일을 각각 수정해줘야 한다. 각 OS의 네이티브 개발자의 경우에도 아래 순서와 동일하게 수정하면 되니 그대로 수정을 진행하면 되겠다. 안드로이드 - AndroidManifest.xml 수정 iOS - Info.plist 수정 (When developing with Flutter, Android native files and iOS native files must be modified separately. Even for native developers of each OS, You can modify it .. 2023. 10. 19.
플러터 업그레이드 되면서 바뀐 버튼 정리 플러터 업그레이드 되면서 이름이 바뀐 버튼 정리 기존 변경 FlatButton TextButton OutlineButton OutlinedButton RaisedButton ElevatedButton +추가) Scaffold 인스턴스도 ScaffoldMessenger로 바뀌었음 ex) 기존:Scaffold.of(context).showSnackBar() ==> 변경ScaffoldMessenger.of(context).showSnackBar() 2023. 1. 14.
[Flutter] Change flutter version (downgrade, upgrade) (플러터 버전 바꾸기 (다운그레이드, 업그레이드)) [Flutter] Change flutter version (downgrade, upgrade) 플러터 버전 바꾸기 (다운그레이드, 업그레이드) 플러터를 사용하다가 실수로 업그레이드 하거나 하는 이유로, 잘 빌드되던 기존 코드가 빌드에 실패하는 불상사가 발생하곤 한다. 이 때는 당황하지 말고 플러터 버전을 다운그레이드하면 된다! (For reasons such as accidentally upgrading while using Flutter, Existing code that was built well often fails to build. In this case, don't panic and just downgrade the Flutter version!) 1. 아래 링크를 타고 들어가면, flutte.. 2022. 9. 6.
[Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) [Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) 리눅스의 OpenSSH 설정 파일에서 포트 번호를 수정 또는 추가하면 된다. (You can edit or add the port number in the Linux OpenSSH configuration file.) sudo vim /etc/ssh/sshd_config #Port 22 -> Port 22 -> Port 2022 service sshd restart 또는 /etc/rc.d/init.d/sshd restart 2022. 9. 3.
반응형