Commit 5fa6c0e9 authored by Matt Perry's avatar Matt Perry

Remove the unimplemented `more` option from the copy/paste toolbar. (#3934)

Remove the unimplemented `more` option from the copy/paste toolbar.

Punting this feature for the near time, so I'm removing the dead option
from the toolbar.
parent 9e7311fe
...@@ -9,8 +9,6 @@ import 'package:flutter/widgets.dart'; ...@@ -9,8 +9,6 @@ import 'package:flutter/widgets.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'flat_button.dart'; import 'flat_button.dart';
import 'icon_button.dart';
import 'icons.dart';
import 'material.dart'; import 'material.dart';
import 'theme.dart'; import 'theme.dart';
...@@ -40,8 +38,6 @@ class _TextSelectionToolbar extends StatelessWidget { ...@@ -40,8 +38,6 @@ class _TextSelectionToolbar extends StatelessWidget {
if (value.text.isNotEmpty) { if (value.text.isNotEmpty) {
if (value.selection.isCollapsed) if (value.selection.isCollapsed)
items.add(new FlatButton(child: new Text('SELECT ALL'), onPressed: _handleSelectAll)); items.add(new FlatButton(child: new Text('SELECT ALL'), onPressed: _handleSelectAll));
// TODO(mpcomplete): implement `more` menu.
items.add(new IconButton(icon: Icons.more_vert));
} }
return new Material( return new Material(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment