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
import 'package:flutter/material.dart'; | |
void main() => runApp(const MaterialApp(home: AuthScreen())); | |
class AuthScreen extends StatelessWidget { | |
const AuthScreen({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( |
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
import 'package:flutter/material.dart'; | |
void main() => runApp(const MaterialApp(home: AuthScreen())); | |
class AuthScreen extends StatelessWidget { | |
const AuthScreen({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( |
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
abstract class DataBindingAdapter<T>( | |
private val variableId: Int, | |
diffCallback: DiffUtil.ItemCallback<T> | |
) : ListAdapter<T, DataBindingAdapter.DataBindingViewHolder<T>>(diffCallback) { | |
private var list: List<T>? = emptyList() | |
private lateinit var onItemViewClick: ((View, T, Int) -> Unit?) | |
private lateinit var clickableIds: IntArray |
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
// ==UserScript== | |
// @name FRESHLY SQUEEZED COUBS | |
// @namespace https://holofox.ru/ | |
// @version 1.0 | |
// @description Hiding recoubs, mutes, non-hd, a.webm, vines and others coubs. | |
// @author Holofox | |
// @match *://coub.com/community/* | |
// @grant none | |
// ==/UserScript== | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js |