aboutsummaryrefslogtreecommitdiff
path: root/test/utils.dart
blob: 0b9d0c72673f67602ac8cef42a40c054a257d29b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import 'package:flutter/material.dart';

Widget wrapper(Widget view) {
  return MaterialApp(
      title: 'owyn test',
      home: Scaffold(
          body: PageView(
              controller: PageController(),
              children: [ view ],
          ),
      ),
    );
}