FlutterPing
  • FlutterPing
  • The Basics
    • Installation
    • Basic Usage
  • Element Builder
    • ElementBuilder
    • PageBuilder
    • RouterConfigBuilder
    • WidgetBuilder
  • Executor
    • ActionExecutor
    • ElementExecutor
Powered by GitBook
On this page
  • Introduction
  • Class Definition
  1. Executor

ElementExecutor

Introduction

The ElementExecutor class is designed to facilitate the execution of operations on elements within a Flutter application. It provides a flexible foundation for creating custom executors by extending this class and implementing the execute method.

Class Definition

class ElementExecutor {
  final Application application;

  ElementExecutor(this.application);

  Future<void> execute(material.BuildContext context, Element element) {
    throw UnimplementedError();
  }
}
PreviousActionExecutor

Last updated 11 months ago