You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
428 B
19 lines
428 B
import 'package:ansu_ui/ansu_ui.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class ExampleScaffold extends StatefulWidget {
|
|
ExampleScaffold({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_ExampleScaffoldState createState() => _ExampleScaffoldState();
|
|
}
|
|
|
|
class _ExampleScaffoldState extends State<ExampleScaffold> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ASScaffold(
|
|
title: '标题',
|
|
);
|
|
}
|
|
}
|