leftAndRight static method

  1. @Deprecated("Under Testing")
Row leftAndRight(
  1. Widget childLeft,
  2. Widget childRight
)

Implementation

@Deprecated( "Under Testing")
static Row leftAndRight ( Widget childLeft, Widget childRight){
  return Row(
    children: [
      childLeft,
      Expanded(child: PlaceholderTemplate.emptyView() ),
      childRight
    ],
  );
}