Home
last modified time | relevance | path

Searched refs:Scrollbar (Results 1 – 25 of 69) sorted by relevance

123

/third_party/flutter/flutter/packages/flutter/test/material/
Dscrollbar_paint_test.dart19 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()));
Dscrollbar_test.dart37 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/
Dscrollbar_test.dart16 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/
Dscrollbar.dart25 /// a [Scrollbar] widget.
31 class Scrollbar extends StatefulWidget {
36 const Scrollbar({
54 class _ScrollbarState extends State<Scrollbar> with TickerProviderStateMixin {
/third_party/python/Lib/tkinter/
Dscrolledtext.py14 from tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
23 self.vbar = Scrollbar(self.frame)
Dfiledialog.py23 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/
Dhtest.py72 from tkinter.ttk import Scrollbar
382 scrollbar = Scrollbar(frameLabel, command=text.yview)
/third_party/python/Lib/idlelib/
Dscrolledlist.py2 from tkinter.ttk import Frame, Scrollbar
16 self.vbar = vbar = Scrollbar(frame, name="vbar")
Dtextview.py6 from tkinter.ttk import Frame, Scrollbar, Button
12 class AutoHideScrollbar(Scrollbar):
Dhelp.py32 from tkinter.ttk import Frame, Menubutton, Scrollbar, Style
219 self.scroll = scroll = Scrollbar(self, command=text.yview)
Dtree.py20 from tkinter.ttk import Frame, Scrollbar
450 self.vbar = Scrollbar(self.frame, name="vbar")
452 self.hbar = Scrollbar(self.frame, name="hbar", orient="horizontal")
Dconfig_key.py5 from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar
161 scroll_keys_final = Scrollbar(self.frame_controls_basic,
Dconfigdialog.py20 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)
Dautocomplete_w.py7 from tkinter.ttk import Scrollbar
199 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL)
Ddebugger.py5 from tkinter.ttk import Frame, Scrollbar
475 self.vbar = vbar = Scrollbar(frame, name="vbar")
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Delevation_demo.dart60 body: Scrollbar(child: ListView(children: buildCards())),
Dexpansion_tile_list_demo.dart19 body: Scrollbar(
Doverscroll_demo.dart65 child: Scrollbar(
Dicons_demo.dart61 child: Scrollbar(
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Dscrollbar.dart43 /// * [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/
Dtypography_demo.dart76 child: Scrollbar(child: ListView(children: styleItems)),
Dcolors_demo.dart102 return Scrollbar(
/third_party/python/Lib/turtledemo/
D__main__.py217 self.vbar = vbar = Scrollbar(text_frame, name='vbar')
220 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)
/third_party/python/Tools/pynche/
DListViewer.py45 self.__scrollbar = Scrollbar(frame)
DPyncheWidget.py233 scrollbar = Scrollbar(root)

123