Module: Ruflet::UI::SharedControlForwarders

Included in:
Kernel, Ruflet, Ruflet::UI
Defined in:
lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, **props, &block) ⇒ Object

Client extensions are open-ended and cannot all be generated into this module. Unknown widget-style helpers with properties are forwarded as generic controls, allowing locally installed extensions to participate in the same Ruby DSL without VM or application-specific methods. See Kernel#method_missing: this module is included into Kernel, so it must decline the same calls Ruby expects to raise on.



418
419
420
421
422
423
424
425
426
427
428
429
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 418

def method_missing(name, *args, **props, &block)
  return super if name.to_s.end_with?("=") || (args.empty? && props.empty? && !block)
  unless Ruflet::UI::ControlFactory.known_control?(name) || Ruflet::UI::ControlFactory.dsl_receiver?(self)
    return super
  end

  forwarded = props.dup
  forwarded[:value] = args.shift unless args.empty?
  return super unless args.empty?

  control_delegate.control(name.to_s, **forwarded, &block)
end

Instance Method Details

#accelerometer(**props) ⇒ Object



34
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 34

def accelerometer(**props) = control_delegate.accelerometer(**props)

#action_sheet(**props) ⇒ Object



266
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 266

def action_sheet(**props) = control_delegate.action_sheet(**props)

#action_sheet_action(content = nil, **props) ⇒ Object



268
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 268

def action_sheet_action(content = nil, **props) = control_delegate.action_sheet_action(content, **props)

#actionsheet(**props) ⇒ Object



267
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 267

def actionsheet(**props) = control_delegate.actionsheet(**props)

#actionsheetaction(content = nil, **props) ⇒ Object



269
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 269

def actionsheetaction(content = nil, **props) = control_delegate.actionsheetaction(content, **props)

#alert_dialog(**props) ⇒ Object



258
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 258

def alert_dialog(**props) = control_delegate.alert_dialog(**props)

#alertdialog(**props) ⇒ Object



259
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 259

def alertdialog(**props) = control_delegate.alertdialog(**props)

#animated_switcher(content = nil, **props) ⇒ Object



30
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 30

def animated_switcher(content = nil, **props) = control_delegate.animated_switcher(content, **props)

#animatedswitcher(content = nil, **props) ⇒ Object



31
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 31

def animatedswitcher(content = nil, **props) = control_delegate.animatedswitcher(content, **props)

#animation(duration = nil, **props) ⇒ Object



32
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 32

def animation(duration = nil, **props) = control_delegate.animation(duration, **props)

#animation_style(**props) ⇒ Object



33
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 33

def animation_style(**props) = control_delegate.animation_style(**props)

#app_bar(**props) ⇒ Object



276
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 276

def app_bar(**props) = control_delegate.app_bar(**props)

#appbar(**props) ⇒ Object



277
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 277

def appbar(**props) = control_delegate.appbar(**props)

#arc(**props) ⇒ Object



84
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 84

def arc(**props) = control_delegate.arc(**props)

#audio(**props) ⇒ Object



35
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 35

def audio(**props) = control_delegate.audio(**props)

#audio_recorder(**props) ⇒ Object



36
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 36

def audio_recorder(**props) = control_delegate.audio_recorder(**props)

#auto_complete(suggestions = nil, **props) ⇒ Object



59
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 59

def auto_complete(suggestions = nil, **props) = control_delegate.auto_complete(suggestions, **props)

#auto_complete_suggestion(key = nil, **props) ⇒ Object



61
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 61

def auto_complete_suggestion(key = nil, **props) = control_delegate.auto_complete_suggestion(key, **props)

#autocomplete(suggestions = nil, **props) ⇒ Object



60
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 60

def autocomplete(suggestions = nil, **props) = control_delegate.autocomplete(suggestions, **props)

#autocomplete_suggestion(key = nil, **props) ⇒ Object



62
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 62

def autocomplete_suggestion(key = nil, **props) = control_delegate.autocomplete_suggestion(key, **props)

#autocompletesuggestion(key = nil, **props) ⇒ Object



63
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 63

def autocompletesuggestion(key = nil, **props) = control_delegate.autocompletesuggestion(key, **props)

#autofill_group(content = nil, **props) ⇒ Object



68
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 68

def autofill_group(content = nil, **props) = control_delegate.autofill_group(content, **props)

#autofillgroup(content = nil, **props) ⇒ Object



69
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 69

def autofillgroup(content = nil, **props) = control_delegate.autofillgroup(content, **props)

#badge(label = nil, **props) ⇒ Object



215
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 215

def badge(label = nil, **props) = control_delegate.badge(label, **props)


219
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 219

def banner(content = nil, **props) = control_delegate.banner(content, **props)


352
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 352

def banner_ad(**props) = control_delegate.banner_ad(**props)

#bannerad(**props) ⇒ Object



353
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 353

def bannerad(**props) = control_delegate.bannerad(**props)

#bar_chart(**props) ⇒ Object



299
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 299

def bar_chart(**props) = control_delegate.bar_chart(**props)

#bar_chart_group(**props) ⇒ Object



301
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 301

def bar_chart_group(**props) = control_delegate.bar_chart_group(**props)

#bar_chart_rod(**props) ⇒ Object



303
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 303

def bar_chart_rod(**props) = control_delegate.bar_chart_rod(**props)

#bar_chart_rod_stack_item(**props) ⇒ Object



305
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 305

def bar_chart_rod_stack_item(**props) = control_delegate.bar_chart_rod_stack_item(**props)

#barchart(**props) ⇒ Object



300
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 300

def barchart(**props) = control_delegate.barchart(**props)

#barchartgroup(**props) ⇒ Object



302
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 302

def barchartgroup(**props) = control_delegate.barchartgroup(**props)

#barchartrod(**props) ⇒ Object



304
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 304

def barchartrod(**props) = control_delegate.barchartrod(**props)

#barchartrodstackitem(**props) ⇒ Object



306
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 306

def barchartrodstackitem(**props) = control_delegate.barchartrodstackitem(**props)

#barometer(**props) ⇒ Object



37
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 37

def barometer(**props) = control_delegate.barometer(**props)

#base_page(**props, &block) ⇒ Object



9
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 9

def base_page(**props, &block) = control_delegate.base_page(**props, &block)

#basepage(**props, &block) ⇒ Object



10
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 10

def basepage(**props, &block) = control_delegate.basepage(**props, &block)

#battery(**props) ⇒ Object



38
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 38

def battery(**props) = control_delegate.battery(**props)

#block_picker(**props) ⇒ Object



340
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 340

def block_picker(**props) = control_delegate.block_picker(**props)

#blockpicker(**props) ⇒ Object



341
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 341

def blockpicker(**props) = control_delegate.blockpicker(**props)

#bottom_app_bar(content = nil, **props) ⇒ Object



220
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 220

def bottom_app_bar(content = nil, **props) = control_delegate.bottom_app_bar(content, **props)

#bottom_sheet(content = nil, **props) ⇒ Object



264
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 264

def bottom_sheet(content = nil, **props) = control_delegate.bottom_sheet(content, **props)

#bottomappbar(content = nil, **props) ⇒ Object



221
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 221

def bottomappbar(content = nil, **props) = control_delegate.bottomappbar(content, **props)

#bottomsheet(content = nil, **props) ⇒ Object



265
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 265

def bottomsheet(content = nil, **props) = control_delegate.bottomsheet(content, **props)

#browser_context_menu(**props) ⇒ Object



39
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 39

def browser_context_menu(**props) = control_delegate.browser_context_menu(**props)

#button(content = nil, **props) ⇒ Object



223
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 223

def button(content = nil, **props) = control_delegate.button(content, **props)

#camera(**props) ⇒ Object



40
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 40

def camera(**props) = control_delegate.camera(**props)

#candlestick_chart(**props) ⇒ Object



317
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 317

def candlestick_chart(**props) = control_delegate.candlestick_chart(**props)

#candlestick_chart_spot(**props) ⇒ Object



319
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 319

def candlestick_chart_spot(**props) = control_delegate.candlestick_chart_spot(**props)

#candlestickchart(**props) ⇒ Object



318
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 318

def candlestickchart(**props) = control_delegate.candlestickchart(**props)

#candlestickchartspot(**props) ⇒ Object



320
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 320

def candlestickchartspot(**props) = control_delegate.candlestickchartspot(**props)

#canvas(shapes = nil, **props) ⇒ Object



81
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 81

def canvas(shapes = nil, **props) = control_delegate.canvas(shapes, **props)

#canvas_color(**props) ⇒ Object



86
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 86

def canvas_color(**props) = control_delegate.canvas_color(**props)

#card(content = nil, **props) ⇒ Object



108
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 108

def card(content = nil, **props) = control_delegate.card(content, **props)

#center(**props, &block) ⇒ Object



24
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 24

def center(**props, &block) = control_delegate.center(**props, &block)

#chart_axis(**props) ⇒ Object



333
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 333

def chart_axis(**props) = control_delegate.chart_axis(**props)

#chart_axis_label(**props) ⇒ Object



335
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 335

def chart_axis_label(**props) = control_delegate.chart_axis_label(**props)

#chartaxis(**props) ⇒ Object



334
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 334

def chartaxis(**props) = control_delegate.chartaxis(**props)

#chartaxislabel(**props) ⇒ Object



336
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 336

def chartaxislabel(**props) = control_delegate.chartaxislabel(**props)

#checkbox(**props) ⇒ Object



247
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 247

def checkbox(**props) = control_delegate.checkbox(**props)

#chip(label = nil, **props) ⇒ Object



216
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 216

def chip(label = nil, **props) = control_delegate.chip(label, **props)

#circle(**props) ⇒ Object



83
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 83

def circle(**props) = control_delegate.circle(**props)

#circle_avatar(content = nil, **props) ⇒ Object



217
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 217

def circle_avatar(content = nil, **props) = control_delegate.circle_avatar(content, **props)

#circle_layer(circles = nil, **props) ⇒ Object



117
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 117

def circle_layer(circles = nil, **props) = control_delegate.circle_layer(circles, **props)

#circle_marker(**props) ⇒ Object



119
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 119

def circle_marker(**props) = control_delegate.circle_marker(**props)

#circleavatar(content = nil, **props) ⇒ Object



218
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 218

def circleavatar(content = nil, **props) = control_delegate.circleavatar(content, **props)

#circlelayer(circles = nil, **props) ⇒ Object



118
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 118

def circlelayer(circles = nil, **props) = control_delegate.circlelayer(circles, **props)

#circlemarker(**props) ⇒ Object



120
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 120

def circlemarker(**props) = control_delegate.circlemarker(**props)

#clipboard(**props) ⇒ Object



278
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 278

def clipboard(**props) = control_delegate.clipboard(**props)

#code_editor(value = nil, **props) ⇒ Object



358
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 358

def code_editor(value = nil, **props) = control_delegate.code_editor(value, **props)

#codeeditor(value = nil, **props) ⇒ Object



359
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 359

def codeeditor(value = nil, **props) = control_delegate.codeeditor(value, **props)

#color(**props) ⇒ Object



85
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 85

def color(**props) = control_delegate.color(**props)

#color_picker(**props) ⇒ Object



342
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 342

def color_picker(**props) = control_delegate.color_picker(**props)

#colorpicker(**props) ⇒ Object



343
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 343

def colorpicker(**props) = control_delegate.colorpicker(**props)

#column(children = nil, **props, &block) ⇒ Object



23
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 23

def column(children = nil, **props, &block) = control_delegate.column(children, **props, &block)

#connectivity(**props) ⇒ Object



41
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 41

def connectivity(**props) = control_delegate.connectivity(**props)

#container(**props, &block) ⇒ Object



29
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 29

def container(**props, &block) = control_delegate.container(**props, &block)

#context_menu(content = nil, **props) ⇒ Object



64
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 64

def context_menu(content = nil, **props) = control_delegate.context_menu(content, **props)

#context_menu_action(content = nil, **props) ⇒ Object



66
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 66

def context_menu_action(content = nil, **props) = control_delegate.context_menu_action(content, **props)

#contextmenu(content = nil, **props) ⇒ Object



65
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 65

def contextmenu(content = nil, **props) = control_delegate.contextmenu(content, **props)

#contextmenuaction(content = nil, **props) ⇒ Object



67
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 67

def contextmenuaction(content = nil, **props) = control_delegate.contextmenuaction(content, **props)

#control(type, **props, &block) ⇒ Object



6
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 6

def control(type, **props, &block) = control_delegate.control(type, **props, &block)

#cupertino_action_sheet(**props) ⇒ Object



382
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 382

def cupertino_action_sheet(**props) = control_delegate.cupertino_action_sheet(**props)

#cupertino_action_sheet_action(**props) ⇒ Object



384
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 384

def cupertino_action_sheet_action(**props) = control_delegate.cupertino_action_sheet_action(**props)

#cupertino_activity_indicator(**props) ⇒ Object



386
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 386

def cupertino_activity_indicator(**props) = control_delegate.cupertino_activity_indicator(**props)

#cupertino_alert_dialog(**props) ⇒ Object



380
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 380

def cupertino_alert_dialog(**props) = control_delegate.cupertino_alert_dialog(**props)

#cupertino_app_bar(**props) ⇒ Object



388
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 388

def cupertino_app_bar(**props) = control_delegate.cupertino_app_bar(**props)

#cupertino_bottom_sheet(content = nil, **props) ⇒ Object



390
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 390

def cupertino_bottom_sheet(content = nil, **props) = control_delegate.cupertino_bottom_sheet(content, **props)

#cupertino_button(content = nil, **props) ⇒ Object



362
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 362

def cupertino_button(content = nil, **props) = control_delegate.cupertino_button(content, **props)

#cupertino_checkbox(**props) ⇒ Object



368
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 368

def cupertino_checkbox(**props) = control_delegate.cupertino_checkbox(**props)

#cupertino_context_menu(**props) ⇒ Object



396
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 396

def cupertino_context_menu(**props) = control_delegate.cupertino_context_menu(**props)

#cupertino_context_menu_action(**props) ⇒ Object



398
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 398

def cupertino_context_menu_action(**props) = control_delegate.cupertino_context_menu_action(**props)

#cupertino_date_picker(**props) ⇒ Object



392
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 392

def cupertino_date_picker(**props) = control_delegate.cupertino_date_picker(**props)

#cupertino_dialog_action(**props) ⇒ Object



394
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 394

def cupertino_dialog_action(**props) = control_delegate.cupertino_dialog_action(**props)

#cupertino_filled_button(content = nil, **props) ⇒ Object



364
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 364

def cupertino_filled_button(content = nil, **props) = control_delegate.cupertino_filled_button(content, **props)

#cupertino_list_tile(**props) ⇒ Object



400
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 400

def cupertino_list_tile(**props) = control_delegate.cupertino_list_tile(**props)

#cupertino_navigation_bar(**props) ⇒ Object



402
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 402

def cupertino_navigation_bar(**props) = control_delegate.cupertino_navigation_bar(**props)

#cupertino_picker(children = nil, **props) ⇒ Object



404
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 404

def cupertino_picker(children = nil, **props) = control_delegate.cupertino_picker(children, **props)

#cupertino_radio(**props) ⇒ Object



378
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 378

def cupertino_radio(**props) = control_delegate.cupertino_radio(**props)

#cupertino_segmented_button(children = nil, **props) ⇒ Object



406
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 406

def cupertino_segmented_button(children = nil, **props) = control_delegate.cupertino_segmented_button(children, **props)

#cupertino_slider(**props) ⇒ Object



376
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 376

def cupertino_slider(**props) = control_delegate.cupertino_slider(**props)

#cupertino_sliding_segmented_button(children = nil, **props) ⇒ Object



408
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 408

def cupertino_sliding_segmented_button(children = nil, **props) = control_delegate.cupertino_sliding_segmented_button(children, **props)

#cupertino_switch(**props) ⇒ Object



374
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 374

def cupertino_switch(**props) = control_delegate.cupertino_switch(**props)

#cupertino_text_field(value = nil, **props) ⇒ Object



370
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 370

def cupertino_text_field(value = nil, **props) = control_delegate.cupertino_text_field(value, **props)

#cupertino_timer_picker(**props) ⇒ Object



372
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 372

def cupertino_timer_picker(**props) = control_delegate.cupertino_timer_picker(**props)

#cupertino_tinted_button(content = nil, **props) ⇒ Object



366
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 366

def cupertino_tinted_button(content = nil, **props) = control_delegate.cupertino_tinted_button(content, **props)

#cupertinoactionsheet(**props) ⇒ Object



383
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 383

def cupertinoactionsheet(**props) = control_delegate.cupertinoactionsheet(**props)

#cupertinoactionsheetaction(**props) ⇒ Object



385
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 385

def cupertinoactionsheetaction(**props) = control_delegate.cupertinoactionsheetaction(**props)

#cupertinoactivityindicator(**props) ⇒ Object



387
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 387

def cupertinoactivityindicator(**props) = control_delegate.cupertinoactivityindicator(**props)

#cupertinoalertdialog(**props) ⇒ Object



381
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 381

def cupertinoalertdialog(**props) = control_delegate.cupertinoalertdialog(**props)

#cupertinoappbar(**props) ⇒ Object



389
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 389

def cupertinoappbar(**props) = control_delegate.cupertinoappbar(**props)

#cupertinobottomsheet(content = nil, **props) ⇒ Object



391
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 391

def cupertinobottomsheet(content = nil, **props) = control_delegate.cupertinobottomsheet(content, **props)

#cupertinobutton(content = nil, **props) ⇒ Object



363
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 363

def cupertinobutton(content = nil, **props) = control_delegate.cupertinobutton(content, **props)

#cupertinocheckbox(**props) ⇒ Object



369
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 369

def cupertinocheckbox(**props) = control_delegate.cupertinocheckbox(**props)

#cupertinocontextmenu(**props) ⇒ Object



397
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 397

def cupertinocontextmenu(**props) = control_delegate.cupertinocontextmenu(**props)

#cupertinocontextmenuaction(**props) ⇒ Object



399
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 399

def cupertinocontextmenuaction(**props) = control_delegate.cupertinocontextmenuaction(**props)

#cupertinodatepicker(**props) ⇒ Object



393
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 393

def cupertinodatepicker(**props) = control_delegate.cupertinodatepicker(**props)

#cupertinodialogaction(**props) ⇒ Object



395
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 395

def cupertinodialogaction(**props) = control_delegate.cupertinodialogaction(**props)

#cupertinofilledbutton(content = nil, **props) ⇒ Object



365
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 365

def cupertinofilledbutton(content = nil, **props) = control_delegate.cupertinofilledbutton(content, **props)

#cupertinolisttile(**props) ⇒ Object



401
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 401

def cupertinolisttile(**props) = control_delegate.cupertinolisttile(**props)

#cupertinonavigationbar(**props) ⇒ Object



403
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 403

def cupertinonavigationbar(**props) = control_delegate.cupertinonavigationbar(**props)

#cupertinopicker(children = nil, **props) ⇒ Object



405
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 405

def cupertinopicker(children = nil, **props) = control_delegate.cupertinopicker(children, **props)

#cupertinoradio(**props) ⇒ Object



379
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 379

def cupertinoradio(**props) = control_delegate.cupertinoradio(**props)

#cupertinosegmentedbutton(children = nil, **props) ⇒ Object



407
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 407

def cupertinosegmentedbutton(children = nil, **props) = control_delegate.cupertinosegmentedbutton(children, **props)

#cupertinoslider(**props) ⇒ Object



377
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 377

def cupertinoslider(**props) = control_delegate.cupertinoslider(**props)

#cupertinoslidingsegmentedbutton(children = nil, **props) ⇒ Object



409
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 409

def cupertinoslidingsegmentedbutton(children = nil, **props) = control_delegate.cupertinoslidingsegmentedbutton(children, **props)

#cupertinoswitch(**props) ⇒ Object



375
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 375

def cupertinoswitch(**props) = control_delegate.cupertinoswitch(**props)

#cupertinotextfield(value = nil, **props) ⇒ Object



371
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 371

def cupertinotextfield(value = nil, **props) = control_delegate.cupertinotextfield(value, **props)

#cupertinotimerpicker(**props) ⇒ Object



373
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 373

def cupertinotimerpicker(**props) = control_delegate.cupertinotimerpicker(**props)

#cupertinotintedbutton(content = nil, **props) ⇒ Object



367
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 367

def cupertinotintedbutton(content = nil, **props) = control_delegate.cupertinotintedbutton(content, **props)

#data_cell(content = nil, **props) ⇒ Object



164
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 164

def data_cell(content = nil, **props) = control_delegate.data_cell(content, **props)

#data_column(label = nil, **props) ⇒ Object



160
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 160

def data_column(label = nil, **props) = control_delegate.data_column(label, **props)

#data_column2(label = nil, **props) ⇒ Object



169
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 169

def data_column2(label = nil, **props) = control_delegate.data_column2(label, **props)

#data_row(cells = nil, **props) ⇒ Object



162
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 162

def data_row(cells = nil, **props) = control_delegate.data_row(cells, **props)

#data_row2(cells = nil, **props) ⇒ Object



171
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 171

def data_row2(cells = nil, **props) = control_delegate.data_row2(cells, **props)

#data_table(columns = nil, **props) ⇒ Object



158
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 158

def data_table(columns = nil, **props) = control_delegate.data_table(columns, **props)

#data_table2(columns = nil, **props) ⇒ Object



167
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 167

def data_table2(columns = nil, **props) = control_delegate.data_table2(columns, **props)

#datacell(content = nil, **props) ⇒ Object



165
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 165

def datacell(content = nil, **props) = control_delegate.datacell(content, **props)

#datacolumn(label = nil, **props) ⇒ Object



161
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 161

def datacolumn(label = nil, **props) = control_delegate.datacolumn(label, **props)

#datacolumn2(label = nil, **props) ⇒ Object



170
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 170

def datacolumn2(label = nil, **props) = control_delegate.datacolumn2(label, **props)

#datarow(cells = nil, **props) ⇒ Object



163
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 163

def datarow(cells = nil, **props) = control_delegate.datarow(cells, **props)

#datarow2(cells = nil, **props) ⇒ Object



172
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 172

def datarow2(cells = nil, **props) = control_delegate.datarow2(cells, **props)

#datatable(columns = nil, **props) ⇒ Object



159
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 159

def datatable(columns = nil, **props) = control_delegate.datatable(columns, **props)

#datatable2(columns = nil, **props) ⇒ Object



168
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 168

def datatable2(columns = nil, **props) = control_delegate.datatable2(columns, **props)

#date_picker(**props) ⇒ Object



154
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 154

def date_picker(**props) = control_delegate.date_picker(**props)

#date_range_picker(**props) ⇒ Object



156
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 156

def date_range_picker(**props) = control_delegate.date_range_picker(**props)

#datepicker(**props) ⇒ Object



155
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 155

def datepicker(**props) = control_delegate.datepicker(**props)

#daterangepicker(**props) ⇒ Object



157
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 157

def daterangepicker(**props) = control_delegate.daterangepicker(**props)

#dialogs(controls = nil, **props) ⇒ Object



11
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 11

def dialogs(controls = nil, **props) = control_delegate.dialogs(controls, **props)

#dismissible(content = nil, **props) ⇒ Object



105
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 105

def dismissible(content = nil, **props) = control_delegate.dismissible(content, **props)

#divider(**props) ⇒ Object



149
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 149

def divider(**props) = control_delegate.divider(**props)

#drag_target(content = nil, **props, &block) ⇒ Object



106
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 106

def drag_target(content = nil, **props, &block) = control_delegate.drag_target(content, **props, &block)

#draggable(content = nil, **props, &block) ⇒ Object



104
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 104

def draggable(content = nil, **props, &block) = control_delegate.draggable(content, **props, &block)

#dragtarget(content = nil, **props, &block) ⇒ Object



107
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 107

def dragtarget(content = nil, **props, &block) = control_delegate.dragtarget(content, **props, &block)


179
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 179

def dropdown(options = nil, **props) = control_delegate.dropdown(options, **props)


182
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 182

def dropdown_m2(options = nil, **props) = control_delegate.dropdown_m2(options, **props)


180
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 180

def dropdown_option(key = nil, **props) = control_delegate.dropdown_option(key, **props)


183
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 183

def dropdownm2(options = nil, **props) = control_delegate.dropdownm2(options, **props)


181
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 181

def dropdownoption(key = nil, **props) = control_delegate.dropdownoption(key, **props)

#duration(**parts) ⇒ Object



410
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 410

def duration(**parts) = control_delegate.duration(**parts)

#elevated_button(content = nil, **props) ⇒ Object



224
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 224

def elevated_button(content = nil, **props) = control_delegate.elevated_button(content, **props)

#expansion_panel(**props) ⇒ Object



175
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 175

def expansion_panel(**props) = control_delegate.expansion_panel(**props)

#expansion_panel_list(children = nil, **props) ⇒ Object



177
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 177

def expansion_panel_list(children = nil, **props) = control_delegate.expansion_panel_list(children, **props)

#expansion_tile(children = nil, **props) ⇒ Object



173
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 173

def expansion_tile(children = nil, **props) = control_delegate.expansion_tile(children, **props)

#expansionpanel(**props) ⇒ Object



176
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 176

def expansionpanel(**props) = control_delegate.expansionpanel(**props)

#expansionpanellist(children = nil, **props) ⇒ Object



178
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 178

def expansionpanellist(children = nil, **props) = control_delegate.expansionpanellist(children, **props)

#expansiontile(children = nil, **props) ⇒ Object



174
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 174

def expansiontile(children = nil, **props) = control_delegate.expansiontile(children, **props)

#fab(content = nil, **props) ⇒ Object



273
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 273

def fab(content = nil, **props) = control_delegate.fab(content, **props)

#file_picker(**props) ⇒ Object



42
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 42

def file_picker(**props) = control_delegate.file_picker(**props)

#fill(**props) ⇒ Object



87
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 87

def fill(**props) = control_delegate.fill(**props)

#filled_button(content = nil, **props) ⇒ Object



227
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 227

def filled_button(content = nil, **props) = control_delegate.filled_button(content, **props)

#filled_icon_button(icon = nil, **props) ⇒ Object



229
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 229

def filled_icon_button(icon = nil, **props) = control_delegate.filled_icon_button(icon, **props)

#filled_tonal_button(content = nil, **props) ⇒ Object



231
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 231

def filled_tonal_button(content = nil, **props) = control_delegate.filled_tonal_button(content, **props)

#filled_tonal_icon_button(icon = nil, **props) ⇒ Object



233
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 233

def filled_tonal_icon_button(icon = nil, **props) = control_delegate.filled_tonal_icon_button(icon, **props)

#filledbutton(content = nil, **props) ⇒ Object



228
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 228

def filledbutton(content = nil, **props) = control_delegate.filledbutton(content, **props)

#fillediconbutton(icon = nil, **props) ⇒ Object



230
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 230

def fillediconbutton(icon = nil, **props) = control_delegate.fillediconbutton(icon, **props)

#filledtonalbutton(content = nil, **props) ⇒ Object



232
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 232

def filledtonalbutton(content = nil, **props) = control_delegate.filledtonalbutton(content, **props)

#filledtonaliconbutton(icon = nil, **props) ⇒ Object



234
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 234

def filledtonaliconbutton(icon = nil, **props) = control_delegate.filledtonaliconbutton(icon, **props)

#flashlight(**props) ⇒ Object



43
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 43

def flashlight(**props) = control_delegate.flashlight(**props)

#floating_action_button(**props) ⇒ Object



279
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 279

def floating_action_button(**props) = control_delegate.floating_action_button(**props)

#floatingactionbutton(**props) ⇒ Object



280
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 280

def floatingactionbutton(**props) = control_delegate.floatingactionbutton(**props)

#geolocator(**props) ⇒ Object



44
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 44

def geolocator(**props) = control_delegate.geolocator(**props)

#gesture_detector(**props, &block) ⇒ Object



79
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 79

def gesture_detector(**props, &block) = control_delegate.gesture_detector(**props, &block)

#gesturedetector(**props, &block) ⇒ Object



80
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 80

def gesturedetector(**props, &block) = control_delegate.gesturedetector(**props, &block)

#grid_view(children = nil, **props, &block) ⇒ Object



27
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 27

def grid_view(children = nil, **props, &block) = control_delegate.grid_view(children, **props, &block)

#gridview(children = nil, **props, &block) ⇒ Object



28
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 28

def gridview(children = nil, **props, &block) = control_delegate.gridview(children, **props, &block)

#gyroscope(**props) ⇒ Object



45
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 45

def gyroscope(**props) = control_delegate.gyroscope(**props)

#haptic_feedback(**props) ⇒ Object



46
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 46

def haptic_feedback(**props) = control_delegate.haptic_feedback(**props)

#hero(content = nil, **props) ⇒ Object



70
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 70

def hero(content = nil, **props) = control_delegate.hero(content, **props)

#hue_ring_picker(**props) ⇒ Object



344
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 344

def hue_ring_picker(**props) = control_delegate.hue_ring_picker(**props)

#hueringpicker(**props) ⇒ Object



345
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 345

def hueringpicker(**props) = control_delegate.hueringpicker(**props)

#icon(icon = nil, **props) ⇒ Object



271
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 271

def icon(icon = nil, **props) = control_delegate.icon(icon, **props)

#icon_button(icon = nil, **props) ⇒ Object



239
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 239

def icon_button(icon = nil, **props) = control_delegate.icon_button(icon, **props)

#iconbutton(icon = nil, **props) ⇒ Object



240
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 240

def iconbutton(icon = nil, **props) = control_delegate.iconbutton(icon, **props)

#image(src = nil, **props) ⇒ Object



272
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 272

def image(src = nil, **props) = control_delegate.image(src, **props)

#image_source_attribution(image = nil, **props) ⇒ Object



135
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 135

def image_source_attribution(image = nil, **props) = control_delegate.image_source_attribution(image, **props)

#imagesourceattribution(image = nil, **props) ⇒ Object



136
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 136

def imagesourceattribution(image = nil, **props) = control_delegate.imagesourceattribution(image, **props)

#interactive_viewer(content = nil, **props) ⇒ Object



274
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 274

def interactive_viewer(content = nil, **props) = control_delegate.interactive_viewer(content, **props)

#interactiveviewer(content = nil, **props) ⇒ Object



275
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 275

def interactiveviewer(content = nil, **props) = control_delegate.interactiveviewer(content, **props)

#interstitial_ad(**props) ⇒ Object



354
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 354

def interstitial_ad(**props) = control_delegate.interstitial_ad(**props)

#interstitialad(**props) ⇒ Object



355
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 355

def interstitialad(**props) = control_delegate.interstitialad(**props)

#keyboard_listener(content = nil, **props) ⇒ Object



77
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 77

def keyboard_listener(content = nil, **props) = control_delegate.keyboard_listener(content, **props)

#keyboardlistener(content = nil, **props) ⇒ Object



78
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 78

def keyboardlistener(content = nil, **props) = control_delegate.keyboardlistener(content, **props)

#line(**props) ⇒ Object



82
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 82

def line(**props) = control_delegate.line(**props)

#line_chart(**props) ⇒ Object



307
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 307

def line_chart(**props) = control_delegate.line_chart(**props)

#line_chart_data(**props) ⇒ Object



309
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 309

def line_chart_data(**props) = control_delegate.line_chart_data(**props)

#line_chart_data_point(**props) ⇒ Object



311
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 311

def line_chart_data_point(**props) = control_delegate.line_chart_data_point(**props)

#linechart(**props) ⇒ Object



308
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 308

def linechart(**props) = control_delegate.linechart(**props)

#linechartdata(**props) ⇒ Object



310
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 310

def linechartdata(**props) = control_delegate.linechartdata(**props)

#linechartdatapoint(**props) ⇒ Object



312
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 312

def linechartdatapoint(**props) = control_delegate.linechartdatapoint(**props)

#list_tile(**props) ⇒ Object



109
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 109

def list_tile(**props) = control_delegate.list_tile(**props)

#list_view(children = nil, **props) ⇒ Object



139
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 139

def list_view(children = nil, **props) = control_delegate.list_view(children, **props)

#listtile(**props) ⇒ Object



110
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 110

def listtile(**props) = control_delegate.listtile(**props)

#listview(children = nil, **props) ⇒ Object



140
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 140

def listview(children = nil, **props) = control_delegate.listview(children, **props)

#lottie(src = nil, **props) ⇒ Object



360
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 360

def lottie(src = nil, **props) = control_delegate.lottie(src, **props)

#magnetometer(**props) ⇒ Object



47
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 47

def magnetometer(**props) = control_delegate.magnetometer(**props)

#map(layers = nil, **props) ⇒ Object



111
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 111

def map(layers = nil, **props) = control_delegate.map(layers, **props)

#map_layer(**props) ⇒ Object



131
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 131

def map_layer(**props) = control_delegate.map_layer(**props)

#maplayer(**props) ⇒ Object



132
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 132

def maplayer(**props) = control_delegate.maplayer(**props)

#markdown(value = nil, **props) ⇒ Object



270
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 270

def markdown(value = nil, **props) = control_delegate.markdown(value, **props)

#marker(content = nil, **props) ⇒ Object



116
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 116

def marker(content = nil, **props) = control_delegate.marker(content, **props)

#marker_layer(markers = nil, **props) ⇒ Object



114
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 114

def marker_layer(markers = nil, **props) = control_delegate.marker_layer(markers, **props)

#markerlayer(markers = nil, **props) ⇒ Object



115
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 115

def markerlayer(markers = nil, **props) = control_delegate.markerlayer(markers, **props)

#material_picker(**props) ⇒ Object



346
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 346

def material_picker(**props) = control_delegate.material_picker(**props)

#materialpicker(**props) ⇒ Object



347
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 347

def materialpicker(**props) = control_delegate.materialpicker(**props)


141
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 141

def menu_bar(children = nil, **props) = control_delegate.menu_bar(children, **props)


143
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 143

def menu_item_button(content = nil, **props) = control_delegate.menu_item_button(content, **props)


142
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 142

def menubar(children = nil, **props) = control_delegate.menubar(children, **props)


144
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 144

def menuitembutton(content = nil, **props) = control_delegate.menuitembutton(content, **props)

#merge_semantics(content = nil, **props) ⇒ Object



145
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 145

def merge_semantics(content = nil, **props) = control_delegate.merge_semantics(content, **props)

#mergesemantics(content = nil, **props) ⇒ Object



146
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 146

def mergesemantics(content = nil, **props) = control_delegate.mergesemantics(content, **props)

#multiple_choice_block_picker(**props) ⇒ Object



348
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 348

def multiple_choice_block_picker(**props) = control_delegate.multiple_choice_block_picker(**props)

#multiplechoiceblockpicker(**props) ⇒ Object



349
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 349

def multiplechoiceblockpicker(**props) = control_delegate.multiplechoiceblockpicker(**props)

#native_ad(**props) ⇒ Object



356
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 356

def native_ad(**props) = control_delegate.native_ad(**props)

#nativead(**props) ⇒ Object



357
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 357

def nativead(**props) = control_delegate.nativead(**props)


287
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 287

def navigation_bar(**props, &block) = control_delegate.navigation_bar(**props, &block)


289
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 289

def navigation_bar_destination(**props, &block) = control_delegate.navigation_bar_destination(**props, &block)


295
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 295

def navigation_drawer(children = nil, **props) = control_delegate.navigation_drawer(children, **props)


297
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 297

def navigation_drawer_destination(**props) = control_delegate.navigation_drawer_destination(**props)


291
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 291

def navigation_rail(**props, &block) = control_delegate.navigation_rail(**props, &block)


293
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 293

def navigation_rail_destination(**props, &block) = control_delegate.navigation_rail_destination(**props, &block)


288
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 288

def navigationbar(**props, &block) = control_delegate.navigationbar(**props, &block)


290
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 290

def navigationbardestination(**props, &block) = control_delegate.navigationbardestination(**props, &block)


296
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 296

def navigationdrawer(children = nil, **props) = control_delegate.navigationdrawer(children, **props)


298
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 298

def navigationdrawerdestination(**props) = control_delegate.navigationdrawerdestination(**props)


292
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 292

def navigationrail(**props, &block) = control_delegate.navigationrail(**props, &block)


294
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 294

def navigationraildestination(**props, &block) = control_delegate.navigationraildestination(**props, &block)

#option(key = nil, **props) ⇒ Object



166
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 166

def option(key = nil, **props) = control_delegate.option(key, **props)

#outlined_button(content = nil, **props) ⇒ Object



235
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 235

def outlined_button(content = nil, **props) = control_delegate.outlined_button(content, **props)

#outlined_icon_button(icon = nil, **props) ⇒ Object



237
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 237

def outlined_icon_button(icon = nil, **props) = control_delegate.outlined_icon_button(icon, **props)

#outlinedbutton(content = nil, **props) ⇒ Object



236
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 236

def outlinedbutton(content = nil, **props) = control_delegate.outlinedbutton(content, **props)

#outlinediconbutton(icon = nil, **props) ⇒ Object



238
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 238

def outlinediconbutton(icon = nil, **props) = control_delegate.outlinediconbutton(icon, **props)

#oval(**props) ⇒ Object



88
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 88

def oval(**props) = control_delegate.oval(**props)

#overlay(children = nil, **props) ⇒ Object



71
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 71

def overlay(children = nil, **props) = control_delegate.overlay(children, **props)

#page_view(children = nil, **props) ⇒ Object



187
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 187

def page_view(children = nil, **props) = control_delegate.page_view(children, **props)

#pagelet(content = nil, **props, &block) ⇒ Object



12
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 12

def pagelet(content = nil, **props, &block) = control_delegate.pagelet(content, **props, &block)

#pageview(children = nil, **props) ⇒ Object



188
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 188

def pageview(children = nil, **props) = control_delegate.pageview(children, **props)

#paint(**props) ⇒ Object



93
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 93

def paint(**props) = control_delegate.paint(**props)

#path(**props) ⇒ Object



91
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 91

def path(**props) = control_delegate.path(**props)

#path_arc(**props) ⇒ Object



96
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 96

def path_arc(**props) = control_delegate.path_arc(**props)

#path_arc_to(**props) ⇒ Object



97
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 97

def path_arc_to(**props) = control_delegate.path_arc_to(**props)

#path_close(**props) ⇒ Object



103
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 103

def path_close(**props) = control_delegate.path_close(**props)

#path_cubic_to(**props) ⇒ Object



101
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 101

def path_cubic_to(**props) = control_delegate.path_cubic_to(**props)

#path_line_to(x = nil, y = nil, **props) ⇒ Object



95
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 95

def path_line_to(x = nil, y = nil, **props) = control_delegate.path_line_to(x, y, **props)

#path_move_to(x = nil, y = nil, **props) ⇒ Object



94
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 94

def path_move_to(x = nil, y = nil, **props) = control_delegate.path_move_to(x, y, **props)

#path_oval(**props) ⇒ Object



98
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 98

def path_oval(**props) = control_delegate.path_oval(**props)

#path_quadratic_to(**props) ⇒ Object



100
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 100

def path_quadratic_to(**props) = control_delegate.path_quadratic_to(**props)

#path_rect(**props) ⇒ Object



99
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 99

def path_rect(**props) = control_delegate.path_rect(**props)

#path_sub_path(**props) ⇒ Object



102
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 102

def path_sub_path(**props) = control_delegate.path_sub_path(**props)

#permission_handler(**props) ⇒ Object



48
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 48

def permission_handler(**props) = control_delegate.permission_handler(**props)

#picker(children = nil, **props) ⇒ Object



191
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 191

def picker(children = nil, **props) = control_delegate.picker(children, **props)

#pie_chart(**props) ⇒ Object



313
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 313

def pie_chart(**props) = control_delegate.pie_chart(**props)

#pie_chart_section(**props) ⇒ Object



315
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 315

def pie_chart_section(**props) = control_delegate.pie_chart_section(**props)

#piechart(**props) ⇒ Object



314
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 314

def piechart(**props) = control_delegate.piechart(**props)

#piechartsection(**props) ⇒ Object



316
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 316

def piechartsection(**props) = control_delegate.piechartsection(**props)

#placeholder(content = nil, **props) ⇒ Object



186
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 186

def placeholder(content = nil, **props) = control_delegate.placeholder(content, **props)

#points(**props) ⇒ Object



89
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 89

def points(**props) = control_delegate.points(**props)

#polygon_layer(polygons = nil, **props) ⇒ Object



125
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 125

def polygon_layer(polygons = nil, **props) = control_delegate.polygon_layer(polygons, **props)

#polygon_marker(**props) ⇒ Object



127
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 127

def polygon_marker(**props) = control_delegate.polygon_marker(**props)

#polygonlayer(polygons = nil, **props) ⇒ Object



126
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 126

def polygonlayer(polygons = nil, **props) = control_delegate.polygonlayer(polygons, **props)

#polygonmarker(**props) ⇒ Object



128
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 128

def polygonmarker(**props) = control_delegate.polygonmarker(**props)

#polyline_layer(polylines = nil, **props) ⇒ Object



121
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 121

def polyline_layer(polylines = nil, **props) = control_delegate.polyline_layer(polylines, **props)

#polyline_marker(**props) ⇒ Object



123
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 123

def polyline_marker(**props) = control_delegate.polyline_marker(**props)

#polylinelayer(polylines = nil, **props) ⇒ Object



122
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 122

def polylinelayer(polylines = nil, **props) = control_delegate.polylinelayer(polylines, **props)

#polylinemarker(**props) ⇒ Object



124
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 124

def polylinemarker(**props) = control_delegate.polylinemarker(**props)


241
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 241

def popup_menu_button(items = nil, **props) = control_delegate.popup_menu_button(items, **props)


243
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 243

def popup_menu_item(content = nil, **props) = control_delegate.popup_menu_item(content, **props)

#popupmenubutton(items = nil, **props) ⇒ Object



242
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 242

def popupmenubutton(items = nil, **props) = control_delegate.popupmenubutton(items, **props)

#popupmenuitem(content = nil, **props) ⇒ Object



244
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 244

def popupmenuitem(content = nil, **props) = control_delegate.popupmenuitem(content, **props)

#progress_bar(**props) ⇒ Object



184
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 184

def progress_bar(**props) = control_delegate.progress_bar(**props)

#progress_ring(**props) ⇒ Object



189
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 189

def progress_ring(**props) = control_delegate.progress_ring(**props)

#progressbar(**props) ⇒ Object



185
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 185

def progressbar(**props) = control_delegate.progressbar(**props)

#progressring(**props) ⇒ Object



190
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 190

def progressring(**props) = control_delegate.progressring(**props)

#radar_chart(**props) ⇒ Object



321
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 321

def radar_chart(**props) = control_delegate.radar_chart(**props)

#radar_chart_title(**props) ⇒ Object



323
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 323

def radar_chart_title(**props) = control_delegate.radar_chart_title(**props)

#radar_data_set(**props) ⇒ Object



325
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 325

def radar_data_set(**props) = control_delegate.radar_data_set(**props)

#radar_data_set_entry(**props) ⇒ Object



327
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 327

def radar_data_set_entry(**props) = control_delegate.radar_data_set_entry(**props)

#radarchart(**props) ⇒ Object



322
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 322

def radarchart(**props) = control_delegate.radarchart(**props)

#radarcharttitle(**props) ⇒ Object



324
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 324

def radarcharttitle(**props) = control_delegate.radarcharttitle(**props)

#radardataset(**props) ⇒ Object



326
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 326

def radardataset(**props) = control_delegate.radardataset(**props)

#radardatasetentry(**props) ⇒ Object



328
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 328

def radardatasetentry(**props) = control_delegate.radardatasetentry(**props)

#radio(**props) ⇒ Object



255
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 255

def radio(**props) = control_delegate.radio(**props)

#radio_group(content = nil, **props) ⇒ Object



256
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 256

def radio_group(content = nil, **props) = control_delegate.radio_group(content, **props)

#radiogroup(content = nil, **props) ⇒ Object



257
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 257

def radiogroup(content = nil, **props) = control_delegate.radiogroup(content, **props)

#range_slider(**props) ⇒ Object



195
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 195

def range_slider(**props) = control_delegate.range_slider(**props)

#rangeslider(**props) ⇒ Object



196
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 196

def rangeslider(**props) = control_delegate.rangeslider(**props)

#rect(**props) ⇒ Object



90
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 90

def rect(**props) = control_delegate.rect(**props)

#reorderable_drag_handle(content = nil, **props) ⇒ Object



199
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 199

def reorderable_drag_handle(content = nil, **props) = control_delegate.reorderable_drag_handle(content, **props)

#reorderable_list_view(children = nil, **props) ⇒ Object



201
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 201

def reorderable_list_view(children = nil, **props) = control_delegate.reorderable_list_view(children, **props)

#reorderabledraghandle(content = nil, **props) ⇒ Object



200
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 200

def reorderabledraghandle(content = nil, **props) = control_delegate.reorderabledraghandle(content, **props)

#reorderablelistview(children = nil, **props) ⇒ Object



202
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 202

def reorderablelistview(children = nil, **props) = control_delegate.reorderablelistview(children, **props)

#responsive_row(children = nil, **props, &block) ⇒ Object



197
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 197

def responsive_row(children = nil, **props, &block) = control_delegate.responsive_row(children, **props, &block)

#responsiverow(children = nil, **props, &block) ⇒ Object



198
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 198

def responsiverow(children = nil, **props, &block) = control_delegate.responsiverow(children, **props, &block)

#rich_attribution(attributions = nil, **props) ⇒ Object



133
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 133

def rich_attribution(attributions = nil, **props) = control_delegate.rich_attribution(attributions, **props)

#richattribution(attributions = nil, **props) ⇒ Object



134
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 134

def richattribution(attributions = nil, **props) = control_delegate.richattribution(attributions, **props)

#rive(src = nil, **props) ⇒ Object



361
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 361

def rive(src = nil, **props) = control_delegate.rive(src, **props)

#rotated_box(content = nil, **props) ⇒ Object



252
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 252

def rotated_box(content = nil, **props) = control_delegate.rotated_box(content, **props)

#rotatedbox(content = nil, **props) ⇒ Object



253
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 253

def rotatedbox(content = nil, **props) = control_delegate.rotatedbox(content, **props)

#row(children = nil, **props, &block) ⇒ Object



25
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 25

def row(children = nil, **props, &block) = control_delegate.row(children, **props, &block)

#ruflet_app(**props) ⇒ Object



13
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 13

def ruflet_app(**props) = control_delegate.ruflet_app(**props)

#rufletapp(**props) ⇒ Object



14
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 14

def rufletapp(**props) = control_delegate.rufletapp(**props)

#safe_area(content = nil, **props) ⇒ Object



203
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 203

def safe_area(content = nil, **props) = control_delegate.safe_area(content, **props)

#safearea(content = nil, **props) ⇒ Object



204
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 204

def safearea(content = nil, **props) = control_delegate.safearea(content, **props)

#scatter_chart(**props) ⇒ Object



329
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 329

def scatter_chart(**props) = control_delegate.scatter_chart(**props)

#scatter_chart_spot(**props) ⇒ Object



331
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 331

def scatter_chart_spot(**props) = control_delegate.scatter_chart_spot(**props)

#scatterchart(**props) ⇒ Object



330
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 330

def scatterchart(**props) = control_delegate.scatterchart(**props)

#scatterchartspot(**props) ⇒ Object



332
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 332

def scatterchartspot(**props) = control_delegate.scatterchartspot(**props)

#screen_brightness(**props) ⇒ Object



49
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 49

def screen_brightness(**props) = control_delegate.screen_brightness(**props)

#screenshot(content = nil, **props) ⇒ Object



254
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 254

def screenshot(content = nil, **props) = control_delegate.screenshot(content, **props)

#search_bar(children = nil, **props) ⇒ Object



210
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 210

def search_bar(children = nil, **props) = control_delegate.search_bar(children, **props)

#searchbar(children = nil, **props) ⇒ Object



211
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 211

def searchbar(children = nil, **props) = control_delegate.searchbar(children, **props)

#secure_storage(**props) ⇒ Object



50
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 50

def secure_storage(**props) = control_delegate.secure_storage(**props)

#segment(value = nil, **props) ⇒ Object



205
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 205

def segment(value = nil, **props) = control_delegate.segment(value, **props)

#segmented_button(segments = nil, **props) ⇒ Object



206
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 206

def segmented_button(segments = nil, **props) = control_delegate.segmented_button(segments, **props)

#segmentedbutton(segments = nil, **props) ⇒ Object



207
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 207

def segmentedbutton(segments = nil, **props) = control_delegate.segmentedbutton(segments, **props)

#selection_area(content = nil, **props) ⇒ Object



208
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 208

def selection_area(content = nil, **props) = control_delegate.selection_area(content, **props)

#selectionarea(content = nil, **props) ⇒ Object



209
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 209

def selectionarea(content = nil, **props) = control_delegate.selectionarea(content, **props)

#semantics(content = nil, **props) ⇒ Object



212
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 212

def semantics(content = nil, **props) = control_delegate.semantics(content, **props)

#semantics_service(**props) ⇒ Object



51
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 51

def semantics_service(**props) = control_delegate.semantics_service(**props)

#service(type, **props, &block) ⇒ Object



8
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 8

def service(type, **props, &block) = control_delegate.service(type, **props, &block)

#service_registry(services = nil, **props) ⇒ Object



15
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 15

def service_registry(services = nil, **props) = control_delegate.service_registry(services, **props)

#serviceregistry(services = nil, **props) ⇒ Object



16
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 16

def serviceregistry(services = nil, **props) = control_delegate.serviceregistry(services, **props)

#shader_mask(content = nil, **props) ⇒ Object



72
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 72

def shader_mask(content = nil, **props) = control_delegate.shader_mask(content, **props)

#shadermask(content = nil, **props) ⇒ Object



73
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 73

def shadermask(content = nil, **props) = control_delegate.shadermask(content, **props)

#shadow(**props) ⇒ Object



92
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 92

def shadow(**props) = control_delegate.shadow(**props)

#shake_detector(**props) ⇒ Object



52
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 52

def shake_detector(**props) = control_delegate.shake_detector(**props)

#share(**props) ⇒ Object



53
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 53

def share(**props) = control_delegate.share(**props)

#shared_preferences(**props) ⇒ Object



54
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 54

def shared_preferences(**props) = control_delegate.shared_preferences(**props)

#shimmer(content = nil, **props) ⇒ Object



74
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 74

def shimmer(content = nil, **props) = control_delegate.shimmer(content, **props)

#simple_attribution(**props) ⇒ Object



129
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 129

def simple_attribution(**props) = control_delegate.simple_attribution(**props)

#simpleattribution(**props) ⇒ Object



130
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 130

def simpleattribution(**props) = control_delegate.simpleattribution(**props)

#slide_picker(**props) ⇒ Object



350
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 350

def slide_picker(**props) = control_delegate.slide_picker(**props)

#slidepicker(**props) ⇒ Object



351
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 351

def slidepicker(**props) = control_delegate.slidepicker(**props)

#slider(**props) ⇒ Object



249
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 249

def slider(**props) = control_delegate.slider(**props)

#snack_bar(content = nil, **props) ⇒ Object



260
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 260

def snack_bar(content = nil, **props) = control_delegate.snack_bar(content, **props)

#snack_bar_action(label = nil, **props) ⇒ Object



262
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 262

def snack_bar_action(label = nil, **props) = control_delegate.snack_bar_action(label, **props)

#snackbar(content = nil, **props) ⇒ Object



261
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 261

def snackbar(content = nil, **props) = control_delegate.snackbar(content, **props)

#snackbaraction(label = nil, **props) ⇒ Object



263
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 263

def snackbaraction(label = nil, **props) = control_delegate.snackbaraction(label, **props)

#spinkit(**props) ⇒ Object



194
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 194

def spinkit(**props) = control_delegate.spinkit(**props)

#stack(children = nil, **props, &block) ⇒ Object



26
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 26

def stack(children = nil, **props, &block) = control_delegate.stack(children, **props, &block)

#storage_paths(**props) ⇒ Object



55
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 55

def storage_paths(**props) = control_delegate.storage_paths(**props)


147
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 147

def submenu_button(children = nil, **props) = control_delegate.submenu_button(children, **props)


148
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 148

def submenubutton(children = nil, **props) = control_delegate.submenubutton(children, **props)

#switch(**props) ⇒ Object



248
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 248

def switch(**props) = control_delegate.switch(**props)

#tab(label = nil, **props, &block) ⇒ Object



282
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 282

def tab(label = nil, **props, &block) = control_delegate.tab(label, **props, &block)

#tab_bar(tabs = nil, **props, &block) ⇒ Object



283
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 283

def tab_bar(tabs = nil, **props, &block) = control_delegate.tab_bar(tabs, **props, &block)

#tab_bar_view(children = nil, **props, &block) ⇒ Object



285
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 285

def tab_bar_view(children = nil, **props, &block) = control_delegate.tab_bar_view(children, **props, &block)

#tabbar(tabs = nil, **props, &block) ⇒ Object



284
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 284

def tabbar(tabs = nil, **props, &block) = control_delegate.tabbar(tabs, **props, &block)

#tabbarview(children = nil, **props, &block) ⇒ Object



286
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 286

def tabbarview(children = nil, **props, &block) = control_delegate.tabbarview(children, **props, &block)

#tabs(content = nil, **props, &block) ⇒ Object



281
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 281

def tabs(content = nil, **props, &block) = control_delegate.tabs(content, **props, &block)

#text(value = nil, **props) ⇒ Object



222
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 222

def text(value = nil, **props) = control_delegate.text(value, **props)

#text_button(content = nil, **props) ⇒ Object



225
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 225

def text_button(content = nil, **props) = control_delegate.text_button(content, **props)

#text_field(value = nil, **props) ⇒ Object



245
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 245

def text_field(value = nil, **props) = control_delegate.text_field(value, **props)

#text_source_attribution(text = nil, **props) ⇒ Object



137
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 137

def text_source_attribution(text = nil, **props) = control_delegate.text_source_attribution(text, **props)

#text_span(text = nil, **props) ⇒ Object



75
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 75

def text_span(text = nil, **props) = control_delegate.text_span(text, **props)

#textbutton(content = nil, **props) ⇒ Object



226
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 226

def textbutton(content = nil, **props) = control_delegate.textbutton(content, **props)

#textfield(value = nil, **props) ⇒ Object



246
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 246

def textfield(value = nil, **props) = control_delegate.textfield(value, **props)

#textsourceattribution(text = nil, **props) ⇒ Object



138
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 138

def textsourceattribution(text = nil, **props) = control_delegate.textsourceattribution(text, **props)

#textspan(text = nil, **props) ⇒ Object



76
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 76

def textspan(text = nil, **props) = control_delegate.textspan(text, **props)

#tile_layer(**props) ⇒ Object



112
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 112

def tile_layer(**props) = control_delegate.tile_layer(**props)

#tilelayer(**props) ⇒ Object



113
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 113

def tilelayer(**props) = control_delegate.tilelayer(**props)

#time_picker(**props) ⇒ Object



213
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 213

def time_picker(**props) = control_delegate.time_picker(**props)

#timepicker(**props) ⇒ Object



214
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 214

def timepicker(**props) = control_delegate.timepicker(**props)

#timer_picker(**props) ⇒ Object



192
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 192

def timer_picker(**props) = control_delegate.timer_picker(**props)

#timerpicker(**props) ⇒ Object



193
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 193

def timerpicker(**props) = control_delegate.timerpicker(**props)

#transparent_pointer(content = nil, **props) ⇒ Object



250
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 250

def transparent_pointer(content = nil, **props) = control_delegate.transparent_pointer(content, **props)

#transparentpointer(content = nil, **props) ⇒ Object



251
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 251

def transparentpointer(content = nil, **props) = control_delegate.transparentpointer(content, **props)

#url_launcher(**props) ⇒ Object



56
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 56

def url_launcher(**props) = control_delegate.url_launcher(**props)

#user_accelerometer(**props) ⇒ Object



57
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 57

def user_accelerometer(**props) = control_delegate.user_accelerometer(**props)

#vertical_divider(**props) ⇒ Object



150
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 150

def vertical_divider(**props) = control_delegate.vertical_divider(**props)

#verticaldivider(**props) ⇒ Object



151
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 151

def verticaldivider(**props) = control_delegate.verticaldivider(**props)

#video(**props) ⇒ Object



339
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 339

def video(**props) = control_delegate.video(**props)

#view(children = nil, **props, &block) ⇒ Object



18
19
20
21
22
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 18

def view(children = nil, **props, &block)
  mapped = props.dup
  mapped[:controls] = children unless children.nil?
  control_delegate.control(:view, **mapped, &block)
end

#wakelock(**props) ⇒ Object



58
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 58

def wakelock(**props) = control_delegate.wakelock(**props)

#web_view(**props) ⇒ Object



337
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 337

def web_view(**props) = control_delegate.web_view(**props)

#webview(**props) ⇒ Object



338
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 338

def webview(**props) = control_delegate.webview(**props)

#widget(type, **props, &block) ⇒ Object



7
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 7

def widget(type, **props, &block) = control_delegate.widget(type, **props, &block)

#window(**props) ⇒ Object



17
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 17

def window(**props) = control_delegate.window(**props)

#window_drag_area(content = nil, **props) ⇒ Object



152
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 152

def window_drag_area(content = nil, **props) = control_delegate.window_drag_area(content, **props)

#windowdragarea(content = nil, **props) ⇒ Object



153
# File 'lib/ruflet_ui/ruflet/ui/shared_control_forwarders.rb', line 153

def windowdragarea(content = nil, **props) = control_delegate.windowdragarea(content, **props)