You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit reverses the list that was originally
presented to the user while showing the typeahead menu.
This makes sense since on mobile its easier to click
on options closer to the input box, i.e.
where your fingers are currently present,
instead of pressing arrow keys on a keyboard which is
true on a desktop setup.
Hence we place the best matching options
not at the top of the typeahead menu, but
instead put them at the bottom for better
reachability and convenience of the user.
Tests have been added to verify the
emoji behavior rendering behavior.
Fixes#1123.
Fixes#1121.
reason:'Scrolling up should reveal other emoji matches');
338
+
339
+
expect(tester.getTopLeft(find.text(biohazardOptionLabel)).runtimeType,constOffset(1,2).runtimeType, reason:"7th best result should only be visible on scrolling up");
340
+
341
+
debugNetworkImageHttpClientProvider =null;
342
+
343
+
});
344
+
250
345
testWidgets('text emoji means just show text', (tester) async {
251
346
final composeInputFinder =awaitsetupToComposeInput(tester);
252
347
final store =await testBinding.globalStore.perAccount(eg.selfAccount.id);
0 commit comments