Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Накидал за пару часов…) #6

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
Binary file modified docs/.DS_Store
Binary file not shown.
Binary file added docs/images/add_picture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add_picture_camera_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add_picture_camera_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add_picture_gallery_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add_picture_gallery_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/edit_text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/share.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/start_state.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions docs/results/RESULT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
### Шорткаты
- [Проделанная работа](#проделанная-работа)
- [Showcase (скриншоты)](#showcase)
- [Послесловие](#послесловие)

# Проделанная работа

Результатом проделанной работы стало приложение Power Demotivator Maker, выполненное в минималистичном стиле.

<img src="../images/start_state.png" height="512">

<video height="512" controls>
<source src="../screencasts/meme_demo_screencast.mp4" type="video/mp4">
</video>

### **Базовый уровень:**

✅ Возможность выбрать картинку из интернета (например, по ссылке)

При нажатии на кнопку «+ Добавить картинку» открывается выпадающее меню
с вариантами вставки картинок. В том числе и вариант вставки url из буфера обмена. Я посчитал такой вариант более удобным, чем вставлять ссылку в какой-либо TextField.

*Единственное, не успел проработать сценарий, когда в буфере обмена находится не ссылка, а изображение.*

<img src="../images/add_picture.png" height="512">

✅ Возможность ввести текст

Тут без особых комментариев. Обычный TextField.

*Не успел проработать момент с уменьшением текста по мере увеличения количества введённых символов. Планировал обыграть этот момент через виджет FittedBox.*

<img src="../images/edit_text.png" height="512">



### **Средний уровень**🔥

✅ Возможность выбирать картинки из галереи

Реализация с использованием библиотеки image_picker.

<img src="../images/add_picture_gallery_1.png" height="512"><img src="../images/add_picture_gallery_2.png" height="512">

✅ Дополнительно: Возможность сделать фото и сразу же использовать его

Наша жизнь – сплошной мем, поэтому очень удобно оперативно сделать фото и сорвать хайп на свежем мемесе.

<img src="../images/add_picture_camera_1.png" height="512"><img src="../images/add_picture_camera_2.png" height="512">


✅ Возможность делиться полученным демотиватором (картинкой)

Реализация с использованием библиотек share и path_provider.

Стандартная кнопка «Поделиться», позволяющая, внезапно, поделиться созданным контентом. Для «захвата» виджета и конвертации его в картинку используется виджет RepaintBoundary и метод RenderRepaintBoundary.toImage().

*Уже когда запушил проект в последние минуты, заметил, что на получившуюся картинку попадает крестик, используемый для очистки шаблона от изображения… :)*

<img src="../images/share.png" height="512">

# Послесловие

К сожалению, не смог выделить на выполнение задачи достаточно времени. Будний день, все дела.
Реально тут представлен резульат работы примерно за 2 часа. Соответственно, код, на момент наступления дедлайна, находится в состоянии «черновик». :) За отведённые 7 часов, конечно, можно было бы успеть намного больше.

В проекте всё сделано в одном файле без вынесения кода в отдельные файлы. Виджеты в дереве не вынесены в отдельные классы для улучшения читаймости кода, производительности, переиспользоваемости… Это понятно.
Слой логики также смешан со слоем UI. По-хорошему, я бы вынес логику в Cubit и в слое UI уже отобажал всё, опираясь на текущий стейт Cubit'а.
Binary file added docs/screencasts/meme_demo_screencast.mp4
Binary file not shown.
1 change: 1 addition & 0 deletions meme_generator/ios/Flutter/Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"
1 change: 1 addition & 0 deletions meme_generator/ios/Flutter/Release.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"
44 changes: 44 additions & 0 deletions meme_generator/ios/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '12.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}

def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end

File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

target 'Runner' do
use_frameworks!
use_modular_headers!

flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
target 'RunnerTests' do
inherit! :search_paths
end
end

post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
Loading