View sliverAppBarStatus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
class SliverAppBarStatus extends StatefulWidget { | |
const SliverAppBarStatus({Key? key}) : super(key: key); | |
@override | |
_SliverAppBarStatusState createState() => _SliverAppBarStatusState(); | |
} |
View sliverAppBarRounded
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'package:english_words/english_words.dart'; | |
import 'package:flutter/material.dart'; | |
class SliverAppBarRounded extends StatefulWidget { | |
const SliverAppBarRounded({Key? key}) : super(key: key); | |
@override | |
_SliverAppBarRoundedState createState() => _SliverAppBarRoundedState(); |
View main
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:circular_profile_avatar/circular_profile_avatar.dart'; | |
import 'package:flutter/material.dart'; | |
class SliverPersistentAppBar extends StatelessWidget { | |
const SliverPersistentAppBar({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return SafeArea( | |
child: Material( |
View main
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CustomTableCalendar extends StatefulWidget { | |
const CustomTableCalendar({Key? key}) : super(key: key); | |
@override | |
_CustomTableCalendarState createState() => _CustomTableCalendarState(); | |
} | |
class _CustomTableCalendarState extends State<CustomTableCalendar> { | |
final todaysDate = DateTime.now(); | |
var _focusedCalendarDate = DateTime.now(); |
View main
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:intl/intl.dart'; | |
const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} |