Skip to content

Commit

Permalink
Revert "feat: Vika integration" (#354)
Browse files Browse the repository at this point in the history
This reverts commit b0001ae.
  • Loading branch information
benzlokzik authored Feb 7, 2024
1 parent b0001ae commit f8eeacf
Show file tree
Hide file tree
Showing 5 changed files with 192 additions and 328 deletions.
11 changes: 5 additions & 6 deletions lib/navigation/view/scaffold_navigation_shell.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import 'package:rtu_mirea_app/presentation/theme.dart';
import '../../presentation/constants.dart';

class ScaffoldNavigationShell extends StatelessWidget {
const ScaffoldNavigationShell({Key? key, required this.navigationShell})
: super(key: key);
const ScaffoldNavigationShell({Key? key, required this.navigationShell}) : super(key: key);

final StatefulNavigationShell navigationShell;

Expand Down Expand Up @@ -37,10 +36,10 @@ class ScaffoldNavigationShell extends StatelessWidget {
return Scaffold(
backgroundColor: AppTheme.colorsOf(context).background03,
body: navigationShell,
// bottomNavigationBar: AppBottomNavigationBar(
// index: navigationShell.currentIndex,
// onClick: (index) => _setActiveIndex(index),
// ),
bottomNavigationBar: AppBottomNavigationBar(
index: navigationShell.currentIndex,
onClick: (index) => _setActiveIndex(index),
),
);
}
},
Expand Down
56 changes: 25 additions & 31 deletions lib/onboarding/view/onboarding_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,25 @@ class OnBoardingPage extends StatefulWidget {
}

class _OnBoardingPageState extends State<OnBoardingPage> {
final int _numPages = 1;
final int _numPages = 3;

/// Main images
static List<Image> containersImages = [
// Image(
// image: AssetImage('assets/images/Saly-1.png'),
// height: 375.0,
// width: 375.0,
// ),
Image.network(
'https://sun9-67.userapi.com/impg/Iv2ugpWgE2Oe5TJhD_Fi1OxISwsOLlKR_fnmiQ/yIOJTJyVb1s.jpg?size=700x700&quality=95&sign=51ccad9618f5721f52f9e0c164b91871&type=album'),
// Image(
// image: AssetImage('assets/images/Saly-2.png'),
// height: 324.0,
// width: 328.0,
// ),
// Image(
// image: AssetImage('assets/images/Saly-3.png'),
// height: 315.0,
// width: 315.0,
// ),
static const List<Image> containersImages = [
Image(
image: AssetImage('assets/images/Saly-1.png'),
height: 375.0,
width: 375.0,
),
Image(
image: AssetImage('assets/images/Saly-2.png'),
height: 324.0,
width: 328.0,
),
Image(
image: AssetImage('assets/images/Saly-3.png'),
height: 315.0,
width: 315.0,
),
// Image(
// image: AssetImage('assets/images/Saly-4.png'),
// height: 375.0,
Expand All @@ -51,18 +49,17 @@ class _OnBoardingPageState extends State<OnBoardingPage> {

static const List titlesTexts = [
'Добро пожаловать!',
// 'Смотри расписание!',
// 'Будь в курсе в любой момент!',
'Смотри расписание!',
'Будь в курсе в любой момент!',
// 'Ставь цели!',
//'Коммуницируй!',
];

/// Bottom text strings
static const List contentTexts = [
'Это приложение было создано с помощью технологий ВИКИ - виртуального информационно-коммуникационного ассистента ИИТ РТУ МИРЭА!',

// 'Как же легко, оказывается, можно смотреть расписание, а главное – быстро',
// 'Иногда так лень заходить на сайт и искать нужную тебе информацию, мы это исправили',
'Это приложение было создано студентами для студентов',
'Как же легко, оказывается, можно смотреть расписание, а главное – быстро',
'Иногда так лень заходить на сайт и искать нужную тебе информацию, мы это исправили',
// 'Как же много дедлайнов!? Создавать дедлайны теперь как никогда просто и удобно',
//'Слово сложное, но на деле всё легко. Общайся и делись материалами с другими группами мгновенно',
];
Expand Down Expand Up @@ -104,9 +101,8 @@ class _OnBoardingPageState extends State<OnBoardingPage> {
left: 0,
right: 0,
child: Center(
child: Padding(
padding: EdgeInsets.only(top: getImageTopPadding(index)),
child: containersImages[index]),
child:
Padding(padding: EdgeInsets.only(top: getImageTopPadding(index)), child: containersImages[index]),
),
),
Positioned(
Expand Down Expand Up @@ -191,9 +187,7 @@ class _PageIndicatorsState extends State<PageIndicators> {
List<Widget> _buildPageIndicators(int currentPage) {
List<Widget> list = [];
for (int i = 0; i < widget.dotsNum; i++) {
list.add(i == currentPage
? const PageViewIndicator(isActive: true)
: const PageViewIndicator(isActive: false));
list.add(i == currentPage ? const PageViewIndicator(isActive: true) : const PageViewIndicator(isActive: false));
}
return list;
}
Expand Down
Loading

0 comments on commit f8eeacf

Please sign in to comment.