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.
37 lines
716 B
37 lines
716 B
import 'package:flutter/material.dart';
|
|
|
|
import '../state.dart';
|
|
|
|
class LoginExternal extends StatelessWidget {
|
|
const LoginExternal({
|
|
super.key,
|
|
required this.state,
|
|
});
|
|
|
|
final LoginState state;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: [
|
|
IconButton(
|
|
onPressed: () {
|
|
|
|
},
|
|
iconSize: 28.0,
|
|
color: Colors.green,
|
|
icon: const Icon(Icons.wechat),
|
|
),
|
|
IconButton(
|
|
onPressed: () {
|
|
|
|
},
|
|
iconSize: 28.0,
|
|
color: Colors.teal,
|
|
icon: const Icon(Icons.phone_iphone)
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|