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. Element Builder

ElementBuilder

Introduction

The ElementBuilder class is a generic base class designed to facilitate the construction of various types of elements in a Flutter application. It provides a flexible foundation for creating custom builders by extending this class and implementing the build method.

Class Definition

class ElementBuilder<T> {
  final Application application;

  ElementBuilder(this.application);

  T build(Element element) {
    throw UnimplementedError();
  }
}
PreviousElement BuilderNextPageBuilder

Last updated 11 months ago