cpd_job_app/lib/Search/search_job.dart

36 lines
1.0 KiB
Dart

import 'package:flutter/material.dart';
class SearchScreen extends StatefulWidget {
@override
State<SearchScreen> createState() => _SearchScreenState();
}
class _SearchScreenState extends State<SearchScreen> {
@override
Widget build(BuildContext context) {
return Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [Colors.cyan, Colors.white60],
begin: Alignment.centerLeft,
end: Alignment.centerRight,
stops: [0.2, 0.9])),
child: Scaffold(
backgroundColor: Colors.transparent,
appBar: AppBar(
title: const Text("Search Job Screen"),
centerTitle: true,
flexibleSpace: Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [Colors.cyan, Colors.black],
begin: Alignment.centerLeft,
end: Alignment.centerRight,
stops: [0.2, 0.9])),
),
),
),
);
}
}