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_text_field.dart

33 lines
809 B

import 'package:ansu_ui/ansu_ui.dart';
import 'package:flutter/material.dart';
class ExampleTextFiled extends StatefulWidget {
ExampleTextFiled({Key key}) : super(key: key);
@override
_ExampleTextFiledState createState() => _ExampleTextFiledState();
}
class _ExampleTextFiledState extends State<ExampleTextFiled> {
TextEditingController _controller;
@override
Widget build(BuildContext context) {
return ASScaffold(
title: '文本框 TextFiled',
backgroundColor: kForegroundColor,
body: ListView(
children: [
ASSearchTextField(
controller: _controller,
hintText: '搜索',
),
ASSearchTextField.button(
hintText: '搜索',
onPressed: () {},
),
],
),
);
}
}