일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- Linux
- 맛집
- swift
- MySQL
- port
- ubuntu
- ASP
- 유니티
- PER
- python
- tensorflow
- 다이어트
- mssql
- PyQt
- 날짜
- IOS
- pandas
- 함수
- Excel
- MS-SQL
- urllib
- flutter
- sqlite
- node.js
- PyQt5
- 리눅스
- 라즈베리파이
- GIT
- javascript
- Unity
목록flutter (5)
아미(아름다운미소)
Your flutter checkout has local changes that would be erased by upgrading. If you want to keep these changes, it is recommended that you stash them via "git stash" or else commit the changes to a local branch. If it is okay to remove local changes, then re-run this command with "--force". flutter upgrade --force 플러터 업그레이드가 잘 동작합니다
late keyword non-nullable 로 변수가 선언되면 선언과 동시에 초기값을 주어야 합니다. 그런데 어떤 경우에는 변수가 non-nullable 로 선언되기는 하지만 선언과 동시에 초기값을 줄수 없는 경우도 있습니다. 즉 변수가 null 인 상태로 이용되지는 않지만 초기값이 앱이 실행되면서 결정되는 경우입니다. 이때 late keyword 를 사용하면 됩니다. late 는 단어 뜻 그대로 초기화 시점을 뒤로 미루겠다는 의미입니다.
Flutter WebviewScaffold class _MyHomePageState extends State { @override Widget build(BuildContext context) { return WebviewScaffold( url: "https://flutter.dev/", withJavascript: true, withZoom: false, appBar: AppBar( title: Text("Flutter"), elevation: 1 ), ); } }