28 lines
439 B
Dart
Executable File
28 lines
439 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
class Like extends StatefulWidget {
|
|
@override
|
|
_Like createState() => _Like();
|
|
}
|
|
|
|
class _Like extends State<Like> {
|
|
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar:AppBar(
|
|
title: Text('喜欢'),
|
|
),
|
|
body:Center(
|
|
child: Text('喜欢'),
|
|
)
|
|
);
|
|
}
|
|
} |