Skip to content

Instantly share code, notes, and snippets.

View mosleim's full-sized avatar
🌴
my code on @otoricode

muhammad bukhori muslim mosleim

🌴
my code on @otoricode
View GitHub Profile
@mosleim
mosleim / main.dart
Created September 29, 2022 06:34
quaint-dawn-1244
// properti
// behavior
class Person{
String name;
int age;
Person(this.name, this.age);
String getMessage(){
final msg ="$name age is $age";
@mosleim
mosleim / AndroidManifest.xml
Last active March 21, 2023 07:01
Try to request storage permission
<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
@mosleim
mosleim / Readme.md
Last active December 30, 2023 23:36
show color from text with flutter

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)