Last active
May 16, 2023 23:20
-
-
Save ken-ty/991b19fd187146cde872ff0505fa96ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() { | |
| // 1. 必要最小限で実行 | |
| runApp( | |
| MaterialApp( | |
| home: Scaffold( | |
| backgroundColor: Colors.black, | |
| body: RichText( | |
| text: const TextSpan(text: 'Hello World'), | |
| ), | |
| ), | |
| ), | |
| ); | |
| // 2. コメントアウトを外し, Appを2回走らせる | |
| runApp( | |
| MaterialApp( | |
| home: Scaffold( | |
| backgroundColor: Colors.black, | |
| body: RichText( | |
| text: const TextSpan(text: 'Hello Shanghai'), | |
| ), | |
| ), | |
| ), | |
| ); | |
| } |
Author
Author
エラーは MaterialApp ないから発生していたので追加
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
エラー