Skip to content

Instantly share code, notes, and snippets.

@kvadrakot
kvadrakot / fragment_home.xml
Created January 13, 2021 12:30
Fragment Home XML
View fragment_home.xml
<?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
@kvadrakot
kvadrakot / homefragment.kt
Last active January 13, 2021 12:26
HomeFragment
View homefragment.kt
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
@kvadrakot
kvadrakot / pop.dart
Last active November 25, 2020 21:02
View pop.dart
class PopMenuWidget extends StatefulWidget {
Channel channel;
VoidCallback onDelete;
PopMenuWidget(BuildContext context, this.channel, onDelete);
@override
_PopMenuWidgetState createState() => _PopMenuWidgetState();
}