Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
3983815d
Unverified
Commit
3983815d
authored
Jun 08, 2018
by
Yegor
Committed by
GitHub
Jun 08, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix setTextEntryEmulation docs (#18298)
parent
0e4770e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
driver.dart
packages/flutter_driver/lib/src/driver/driver.dart
+3
-2
No files found.
packages/flutter_driver/lib/src/driver/driver.dart
View file @
3983815d
...
@@ -534,6 +534,8 @@ class FlutterDriver {
...
@@ -534,6 +534,8 @@ class FlutterDriver {
await
_sendCommand
(
new
EnterText
(
text
,
timeout:
timeout
));
await
_sendCommand
(
new
EnterText
(
text
,
timeout:
timeout
));
}
}
/// Configures text entry emulation.
///
/// If `enabled` is true, enables text entry emulation via [enterText]. If
/// If `enabled` is true, enables text entry emulation via [enterText]. If
/// `enabled` is false, disables it. By default text entry emulation is
/// `enabled` is false, disables it. By default text entry emulation is
/// enabled.
/// enabled.
...
@@ -544,8 +546,7 @@ class FlutterDriver {
...
@@ -544,8 +546,7 @@ class FlutterDriver {
///
///
/// When enabled, the operating system's configured keyboard will not be
/// When enabled, the operating system's configured keyboard will not be
/// invoked when the widget is focused, as the [SystemChannels.textInput]
/// invoked when the widget is focused, as the [SystemChannels.textInput]
/// channel will be mocked out. In disabled mode [enterText] can be used to
/// channel will be mocked out.
/// emulate text entry.
Future
<
Null
>
setTextEntryEmulation
({
@required
bool
enabled
,
Duration
timeout
})
async
{
Future
<
Null
>
setTextEntryEmulation
({
@required
bool
enabled
,
Duration
timeout
})
async
{
assert
(
enabled
!=
null
);
assert
(
enabled
!=
null
);
await
_sendCommand
(
new
SetTextEntryEmulation
(
enabled
,
timeout:
timeout
));
await
_sendCommand
(
new
SetTextEntryEmulation
(
enabled
,
timeout:
timeout
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment