pumpNyWidgetSimple method

Future<void> pumpNyWidgetSimple(
  1. Widget widget
)

Pump a Nylo widget using a simple theme (no Google Fonts).

Use this when you want to completely avoid font-related issues.

Example:

await tester.pumpNyWidgetSimple(HomePage());

Implementation

Future<void> pumpNyWidgetSimple(Widget widget) async {
  await pumpNyWidget(widget, useSimpleTheme: true);
}