buildIn method

Widget buildIn(
  1. BuildContext context
)

Compiled once and passed to an InheritedWidget Supply the appropriate interface depending on the platform.

Implementation

Widget buildIn(BuildContext context) =>
    App.useMaterial ? buildAndroid(context) : buildiOS(context);