Skip to content

Instantly share code, notes, and snippets.

View rizalkotlin's full-sized avatar

rizalkotlin

  • PT Kazee Digital Indonesia
  • Bandung dan Sekitarnya, Jawa Barat, Indonesia
View GitHub Profile
@putraxor
putraxor / raw_keyboard_widget.dart
Created July 1, 2019 22:50
Flutter widget to handle keyboard for CTRL+C/V/X/A and SHIFT+LEFT/RIGHT selection
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
class RawKeyboardWidget extends StatefulWidget {
final Widget child;
RawKeyboardWidget({@required this.child});
@override