Searched refs:Scrollbar (Results 1 – 25 of 69) sorted by relevance
123
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | scrollbar_paint_test.dart | 19 child: Scrollbar( 31 expect(find.byType(Scrollbar), isNot(paints..rect())); 33 …expect(find.byType(Scrollbar), paints..rect(rect: const Rect.fromLTRB(800.0 - 6.0, 1.5, 800.0, 91.… 41 expect(find.byType(Scrollbar), isNot(paints..rect())); 43 expect(find.byType(Scrollbar), paints..rect(rect: const Rect.fromLTRB(0.0, 1.5, 6.0, 91.5))); 54 body: Scrollbar( 70 expect(find.byType(Scrollbar), paints..rect( 89 body: Scrollbar( 105 expect(find.byType(Scrollbar), isNot(paints..rect()));
|
D | scrollbar_test.dart | 37 testWidgets('Scrollbar doesn\'t show when tapping list', (WidgetTester tester) async { 47 child: Scrollbar( 86 child: Scrollbar( 97 of: find.byType(Scrollbar), 119 // Scrollbar is not supposed to draw anything if there isn't enough content. 130 child: const Scrollbar( 142 // Scrollbar fully showing 144 expect(find.byType(Scrollbar), paints..rect()); 154 expect(find.byType(Scrollbar), paints..rrect());
|
/third_party/flutter/flutter/packages/flutter/test/cupertino/ |
D | scrollbar_test.dart | 16 testWidgets('Scrollbar never goes away until finger lift', (WidgetTester tester) async { 31 // Scrollbar fully showing 54 testWidgets('Scrollbar thumb can be dragged with long press', (WidgetTester tester) async { 81 // Scrollbar thumb is fully showing and scroll offset has moved by 122 …testWidgets('Scrollbar thumb can be dragged by swiping in from right', (WidgetTester tester) async… 149 // Scrollbar thumb is fully showing and scroll offset has moved by
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | scrollbar.dart | 25 /// a [Scrollbar] widget. 31 class Scrollbar extends StatefulWidget { 36 const Scrollbar({ 54 class _ScrollbarState extends State<Scrollbar> with TickerProviderStateMixin {
|
/third_party/python/Lib/tkinter/ |
D | scrolledtext.py | 14 from tkinter import Frame, Text, Scrollbar, Pack, Grid, Place 23 self.vbar = Scrollbar(self.frame)
|
D | filedialog.py | 23 Toplevel, RIGHT, Y, END, Listbox, BOTH, Scrollbar, 82 self.filesbar = Scrollbar(self.midframe) 93 self.dirsbar = Scrollbar(self.midframe)
|
/third_party/python/Lib/idlelib/idle_test/ |
D | htest.py | 72 from tkinter.ttk import Scrollbar 382 scrollbar = Scrollbar(frameLabel, command=text.yview)
|
/third_party/python/Lib/idlelib/ |
D | scrolledlist.py | 2 from tkinter.ttk import Frame, Scrollbar 16 self.vbar = vbar = Scrollbar(frame, name="vbar")
|
D | textview.py | 6 from tkinter.ttk import Frame, Scrollbar, Button 12 class AutoHideScrollbar(Scrollbar):
|
D | help.py | 32 from tkinter.ttk import Frame, Menubutton, Scrollbar, Style 219 self.scroll = scroll = Scrollbar(self, command=text.yview)
|
D | tree.py | 20 from tkinter.ttk import Frame, Scrollbar 450 self.vbar = Scrollbar(self.frame, name="vbar") 452 self.hbar = Scrollbar(self.frame, name="hbar", orient="horizontal")
|
D | config_key.py | 5 from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar 161 scroll_keys_final = Scrollbar(self.frame_controls_basic,
|
D | configdialog.py | 20 OptionMenu, Notebook, Radiobutton, Scrollbar, Style, 353 scroll_font = Scrollbar(frame_font_name) 1228 scroll_target_y = Scrollbar(frame_target) 1229 scroll_target_x = Scrollbar(frame_target, orient=HORIZONTAL) 1939 scroll = Scrollbar(frame_ext, command=self.extension_list.yview) 2121 scroll_helplist = Scrollbar(frame_helplist) 2377 vscrollbar = Scrollbar(self, orient=VERTICAL)
|
D | autocomplete_w.py | 7 from tkinter.ttk import Scrollbar 199 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL)
|
D | debugger.py | 5 from tkinter.ttk import Frame, Scrollbar 475 self.vbar = vbar = Scrollbar(frame, name="vbar")
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/ |
D | elevation_demo.dart | 60 body: Scrollbar(child: ListView(children: buildCards())),
|
D | expansion_tile_list_demo.dart | 19 body: Scrollbar(
|
D | overscroll_demo.dart | 65 child: Scrollbar(
|
D | icons_demo.dart | 61 child: Scrollbar(
|
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/ |
D | scrollbar.dart | 43 /// * [Scrollbar], a Material Design scrollbar that dynamically adapts to the 62 /// The [ScrollController] used to implement Scrollbar dragging. 64 /// Scrollbar dragging is started with a long press or a drag in from the side 201 …'Scrollbar dragging is only supported for vertical scrolling. Don\'t pass the controller param to …
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/ |
D | typography_demo.dart | 76 child: Scrollbar(child: ListView(children: styleItems)),
|
D | colors_demo.dart | 102 return Scrollbar(
|
/third_party/python/Lib/turtledemo/ |
D | __main__.py | 217 self.vbar = vbar = Scrollbar(text_frame, name='vbar') 220 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)
|
/third_party/python/Tools/pynche/ |
D | ListViewer.py | 45 self.__scrollbar = Scrollbar(frame)
|
D | PyncheWidget.py | 233 scrollbar = Scrollbar(root)
|
123