-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp.dart
30 lines (27 loc) · 959 Bytes
/
p.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import 'package:flutter/material.dart';
import 'package:untitled/MyApp.dart';
import 'package:untitled/list&gridview/listview.dart';
class pa extends StatefulWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
floatingActionButton: FloatingActionButton(
onPressed: () {
Navigator.push(
context, MaterialPageRoute(builder: (context)=>usingalignments(),));
},
child: ClipRRect(
borderRadius: BorderRadius.all(Radius.circular(88)),
child: Image.asset(
'assets/pi3.jpg', fit: BoxFit.fill, height: 50,)),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(50)))),
floatingActionButtonLocation: FloatingActionButtonLocation.endTop,
);
}
@override
State<StatefulWidget> createState() {
// TODO: implement createState
throw UnimplementedError();
}
}