View fragment_home.xml
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
tools:context=".ui.dashboard.DashboardFragment"> | |
<TextView |
View homefragment.kt
This file contains 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
package com.engineer.ui.home | |
import android.content.Intent | |
import android.os.Bundle | |
import android.os.Handler | |
import android.os.Looper | |
import android.text.Editable | |
import android.text.TextWatcher | |
import android.util.Log | |
import android.view.LayoutInflater |
View pop.dart
This file contains 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
class PopMenuWidget extends StatefulWidget { | |
Channel channel; | |
VoidCallback onDelete; | |
PopMenuWidget(BuildContext context, this.channel, onDelete); | |
@override | |
_PopMenuWidgetState createState() => _PopMenuWidgetState(); | |
} |