This file contains hidden or 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'; | |
class CalendarTemplateOne extends StatefulWidget { | |
const CalendarTemplateOne({Key? key}) : super(key: key); | |
@override | |
CalendarTemplateOneState createState() => CalendarTemplateOneState(); | |
} | |
class CalendarTemplateOneState extends State<CalendarTemplateOne> { |
This file contains hidden or 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'; | |
import 'package:intl/intl.dart'; | |
const Color primaryColor = Color(0xFF066AC9); | |
const Color vistaWhite = Color(0xFFFAF9F9); | |
const Color darkJungleGreen = Color(0xFF212121); | |
const Color heather = Color(0xFFBCC1CD); | |
const Color blueGrey = Color(0xFF64748B); |
This file contains hidden or 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'; | |
class OnboardingOneView extends StatefulWidget { | |
const OnboardingOneView({super.key}); | |
@override | |
State<OnboardingOneView> createState() => _OnboardingOneViewState(); | |
} | |
class _OnboardingOneViewState extends State<OnboardingOneView> { |
This file contains hidden or 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'; | |
enum SnackbarOneType { | |
success, | |
error, | |
warning, | |
information, | |
} | |
snackbarOne({ |
This file contains hidden or 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'; | |
class TabBarOne extends StatelessWidget { | |
const TabBarOne({ | |
super.key, | |
required this.tabs, | |
this.isScrollable = true, | |
this.controller, | |
}); |
This file contains hidden or 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'; | |
class TabBarTwo extends StatelessWidget { | |
final List<String> tabs; | |
final bool isScrollable; | |
final double height; | |
final TabController? tabController; | |
final double borderRadius; | |
const TabBarTwo({ |
This file contains hidden or 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'; | |
class TabBarThree extends StatelessWidget { | |
final List<String> tabs; | |
final bool isScrollable; | |
final double height; | |
final TabController? tabController; | |
final double borderRadius; | |
const TabBarThree({ |
This file contains hidden or 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:ui'; | |
import 'package:flutter/material.dart'; | |
class BlurContainer extends StatelessWidget { | |
final Widget child; | |
final double? height; | |
final double? width; | |
final double elevation; | |
final double blur; |
NewerOlder