Muhammad Norzariman Razari

Results 8 comments of Muhammad Norzariman Razari

```xml app:hintTextColor="@color/colorPrimary" app:inputTextColor="@color/colorPrimary" ``` ```java customTextColorEditText.setHintTextColor(Color.BLACK) customTextColorEditText.setInputTextColor(ColorStateList( arrayOf( intArrayOf(android.R.attr.state_focused), intArrayOf()), intArrayOf(ContextCompat.getColor(this,R.color.colorPrimary), Color.BLACK), )) ```

```xml app:typefaceFromAsset="Quicksand-Medium.ttf" ``` or ```kotlin customFontEditText.setTypeface(Typeface.createFromAsset(resources.assets, "Quicksand-Light.ttf")) ```

You can use 'background' to set image ```dart new MenuView( background:DecorationImage(...), . . . ), ```

you can set AppBar by using ```appBar``` prop ```dart final DrawerScaffoldController controller = DrawerScaffoldController(); DrawerScaffold( controller: controller, appBar: AppBar( leading: InkWell( onTap: ()=> controller.toggle(), child: Icon(Icons.menu), ), ), ) ```...

related issue https://github.com/shiburagi/Drawer-Behavior-Flutter/issues/53

Try replace this, ```dart onMenuItemSelected: (String itemId) { selectedMenuItemId = itemId; }, ``` with this one, ```dart onMenuItemSelected: (String itemId) { setState(()=>selectedMenuItemId = itemId); }, ```

replace **Exception, e** to **Exception as e**