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