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 androidx.compose.foundation.clickable | |
| import androidx.compose.foundation.layout.Column | |
| import androidx.compose.foundation.layout.fillMaxWidth | |
| import androidx.compose.foundation.layout.padding | |
| import androidx.compose.foundation.layout.width | |
| import androidx.compose.material.* | |
| import androidx.compose.material.icons.Icons | |
| import androidx.compose.material.icons.filled.ArrowDropDown | |
| import androidx.compose.material.icons.filled.ArrowDropUp | |
| import androidx.compose.runtime.* |
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 '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; |
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 'package:flutter/material.dart'; | |
| enum IndicatorSide { start, end } | |
| PageController controller = PageController(viewportFraction: 1, keepPage: true); | |
| class VerticalTabs extends StatefulWidget { | |
| final int initialIndex; | |
| final double tabsWidth; | |
| final double indicatorWidth; |
OlderNewer