89 lines
2.5 KiB
Dart
89 lines
2.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:notes/note_tile.dart';
|
|
|
|
class AllNotesPage extends StatefulWidget {
|
|
const AllNotesPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<AllNotesPage> createState() => _AllNotesPageState();
|
|
}
|
|
|
|
class _AllNotesPageState extends State<AllNotesPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: [
|
|
const SizedBox(
|
|
height: 10,
|
|
),
|
|
Row(
|
|
children: [
|
|
const SizedBox(
|
|
width: 20,
|
|
),
|
|
const Text(
|
|
'All notes',
|
|
style: TextStyle(
|
|
color: Color.fromRGBO(255, 255, 255, .85), fontSize: 22),
|
|
),
|
|
Expanded(child: Container()),
|
|
Material(
|
|
color: Colors.transparent,
|
|
shape: const CircleBorder(),
|
|
clipBehavior: Clip.hardEdge,
|
|
child: IconButton(
|
|
icon: const Icon(Icons.picture_as_pdf_outlined),
|
|
iconSize: 28,
|
|
color: const Color.fromRGBO(255, 255, 255, .85),
|
|
onPressed: () {},
|
|
),
|
|
),
|
|
Material(
|
|
color: Colors.transparent,
|
|
shape: const CircleBorder(),
|
|
clipBehavior: Clip.hardEdge,
|
|
child: IconButton(
|
|
icon: const Icon(Icons.search),
|
|
iconSize: 28,
|
|
color: const Color.fromRGBO(255, 255, 255, .85),
|
|
onPressed: () {},
|
|
),
|
|
),
|
|
Material(
|
|
color: Colors.transparent,
|
|
shape: const CircleBorder(),
|
|
clipBehavior: Clip.hardEdge,
|
|
child: IconButton(
|
|
icon: const Icon(Icons.more_vert),
|
|
iconSize: 28,
|
|
color: const Color.fromRGBO(255, 255, 255, .85),
|
|
onPressed: () {},
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 15,
|
|
)
|
|
],
|
|
),
|
|
Row(
|
|
children: const [Text('date modified..')],
|
|
),
|
|
_buildNoteTiles()
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildNoteTiles() {
|
|
return Expanded(
|
|
child: GridView.builder(
|
|
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
|
|
crossAxisCount: 5,
|
|
),
|
|
padding: const EdgeInsets.all(2),
|
|
itemBuilder: (BuildContext context, int index) => const NoteTile(),
|
|
itemCount: 3,
|
|
),
|
|
);
|
|
}
|
|
}
|