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.
ansu_ui/example/lib/example_scaffold.dart

38 lines
845 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>
with TickerProviderStateMixin {
TabController _tabController;
List<String> tabs;
@override
void initState() {
super.initState();
tabs = List.generate(10, (index) => 'Tab $index');
_tabController = TabController(
length: tabs.length,
vsync: this,
);
}
@override
Widget build(BuildContext context) {
return ASScaffold(
title: '标题',
appBarBottom: ASTabBar(
items: tabs,
isScrollable: true,
controller: _tabController,
),
);
}
}