just create new flutter project, and replace the main.dart.
try to paste in textfield :
Turquoise Blue (#40E0D0)
Coral Pink (#FF6F61)
Sunny Yellow (#FFD700)
Leaf Green (#8F9779)
// properti | |
// behavior | |
class Person{ | |
String name; | |
int age; | |
Person(this.name, this.age); | |
String getMessage(){ | |
final msg ="$name age is $age"; |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.research_storage"> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/> | |
<application | |
android:label="research_storage" | |
android:name="${applicationName}" | |
android:icon="@mipmap/ic_launcher"> | |
<activity |
just create new flutter project, and replace the main.dart.
try to paste in textfield :
Turquoise Blue (#40E0D0)
Coral Pink (#FF6F61)
Sunny Yellow (#FFD700)
Leaf Green (#8F9779)