Skip to content

Commit

Permalink
screen bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
moulimoni committed Jun 18, 2021
1 parent 7abea59 commit 9074304
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions lib/screen/SigninScreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ import 'package:flutter/material.dart';
import 'package:adobe_xd/pinned.dart';
import 'package:flutter_svg/flutter_svg.dart';

class SigninScreen extends StatefulWidget {
@override
_SigninScreenState createState() => _SigninScreenState();
}

class _SigninScreenState extends State<SigninScreen> {
TextEditingController _emailcontroller = TextEditingController();
class SigninScreen extends StatelessWidget {
SigninScreen({
Key key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
Expand Down Expand Up @@ -122,7 +119,7 @@ class _SigninScreenState extends State<SigninScreen> {
borderRadius: BorderRadius.circular(25.0),
color: const Color(0xff6500fc),
),
),
),
Pinned.fromPins(
Pin(size: 75.0, middle: 0.5015),
Expand Down

0 comments on commit 9074304

Please sign in to comment.