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
class PhotoFeedItem extends StatelessWidget { | |
final Post post; | |
final CommunityModel? community; | |
final bool isHomeFeed; | |
const PhotoFeedItem({ | |
super.key, | |
required this.post, | |
required this.community, | |
this.isHomeFeed = true, |
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
🙌 Shorebird Build | |
3m 47s | |
Show command | |
➡️ Using type: release | |
🚀 Running release command | |
⠋ Downloading patch...... | |
✓ Downloading patch... (0.1s) |
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
Failed to build iOS app | |
Error output from Xcode build: | |
↳ | |
** ARCHIVE FAILED ** | |
Xcode's output: | |
↳ | |
Writing result bundle at path: |
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
package com.qtrim.pos | |
import android.app.Activity | |
import android.content.Intent | |
import androidx.activity.result.ActivityResultLauncher | |
import androidx.activity.result.contract.ActivityResultContract | |
import androidx.annotation.NonNull | |
import androidx.core.app.ActivityOptionsCompat | |
import androidx.lifecycle.MutableLiveData | |
import com.google.gson.Gson |