You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudsolutions-atoms/lib/new_views/pages/login_page.dart

29 lines
874 B
Dart

import 'package:flutter/material.dart';
import 'package:test_sa/new_views/app_style/app_color.dart';
class LoginPage extends StatelessWidget {
static const String routeName = "/login_page";
const LoginPage({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Image.asset("assets/images/logo.png", height: 60),
Text(
"Login",
style: Theme.of(context).textTheme.displayMedium?.copyWith(color: AppColor.neutral50),
),
Text(
"Enter you credential to login",
style: Theme.of(context).textTheme.titleLarge?.copyWith(color: AppColor.neutral20),
),
],
),
);
}
}